web项目启动初始化java Demo

来源:互联网 发布:网络摄像机方案 编辑:程序博客网 时间:2024/06/05 11:51
import org.springframework.context.ApplicationEvent;import org.springframework.context.ApplicationListener;import org.springframework.context.event.ContextRefreshedEvent;import org.springframework.stereotype.Component;@Componentpublic class DicListener implements ApplicationListener<ApplicationEvent> {@Overridepublic void onApplicationEvent(ApplicationEvent applicationEvent) {if (applicationEvent instanceof ContextRefreshedEvent) {//逻辑代码}}}

0 0
原创粉丝点击