项目有个场景,在所有bean加载完毕时候我们要做些操作,然后就想到了实现ApplicationListener<ContextRefreshedEvent>
@Component public class MyApplicationListener implements ApplicationListener<ContextRefreshedEvent> { @Override public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
但是发现这个事件被触发了两次,里面代码被重复执行了
1.排查问题
一个项目中引入Spring和SpringMVC这两个框架,那么它其实就是两个容器,Spring是父容器,SpringMVC是其子容器,并且在Spring父容器中注册的Bean对于SpringMVC容器中是可见的,而在SpringMVC容器中注册的Bean对于Spring父容器中是不可见的,也就是子容器可以看见父容器中的注册的Bean,反之就不行。详见那么其实我们spring 的applicationontext和使用MVC之后的webApplicationontext在刷新bean后都会调用我们的onApplicationEvent方法,分别传入各自的contenxt
2.问题解决