问题 抓住春天初始化所有豆子的时刻


我有春季申请(我没有懒豆)。

我想在初始化所有@Component(@Repositoey @Service @Controller)bean时插入逻辑。

我该怎么做?


8047
2017-10-23 12:24


起源

你不能在方法上使用@ PostConstruct注释吗@ PostConstruct private void init(){? - StanislavL
之后我需要调用方法 所有的豆子
看看我的答案,这个解决方案允许您在每个bean初始化后执行任何代码。 - Michał Rybak
可能重复 调用方法在初始化所有SpringBeans和ApplicationContext之后 - OrangeDog


答案:


如答案所述 这个问题,您可以使用ApplicationListener并查找 ContextRefreshedEvent

public class Loader implements ApplicationListener<ContextRefreshedEvent>{

        public void onApplicationEvent(ContextRefreshedEvent event) {
                 // whatever you want to do when app context is initialized or refreshed
        }
}

16
2017-10-23 12:32