catch moment when spring initialized all beans

試著忘記壹切 提交于 2019-12-05 00:42:28
trf

As mentioned in the answer to this question, you could use ApplicationListener and look for the ContextRefreshedEvent:

public class Loader implements ApplicationListener<ContextRefreshedEvent>{

        public void onApplicationEvent(ContextRefreshedEvent event) {
                 // whatever you want to do when app context is initialized or refreshed
        }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!