我有春季申请(我没有懒豆)。
我希望在初始化所有@Component(@Repositoey @Service @Controller)bean时插入逻辑。
我该怎么做?
答案 0 :(得分:16)
如this question的答案中所述,您可以使用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
}
}