项目有个场景,在所有bean加载完毕时候我们要做些操作,然后就想到了实现ApplicationListener<ContextRefreshedEvent>
@Component
public class MyApplicationListener implements ApplicationListener<ContextRefreshedEvent> {
@Override
public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) {
}
}
但是发现这个事件被触发了两次,里面代码被重复执行了
原因是: 一个项目中引入Spring和SpringMVC这两个框架,那么它其实就是两个容器,Spring是父容器,SpringMVC是其子容器,并且在Spring父容器中注册的Bean对于SpringMVC容器中是可见的,而在SpringMVC容器中注册的Bean对于Spring父容器中是不可见的,也就是子容器可以看见父容器中的注册的Bean,反之就不行。详见
那么其实我们spring 的applicationontext和使用MVC之后的webApplicationontext在刷新bean后都会调用我们的onApplicationEvent方法,分别传入各自的contenxt
解决方法如下,我们可以判断下哪个上下文是顶级上下文,顶级上下文是我们的spring上下文
i f(contextRefreshedEvent.getApplicationContext().getParent() == null){//root application context 没有parent,他就是老大.
//需要执行的逻辑代码,当spring容器初始化完成后就会执行该方法。
}