springboot关于容器启动事件总结
更新时间:2019年10月16日 14:29:48 作者:yg_zhang
在本篇文章里小编给大家整理的是一篇关于springboot容器启动事件相关知识点,需要的朋友们学习下。
在springboot 容器启动时,我们需要在启动过程中做一些操作,比如启动容器后,执行某些代码。
spring 提供了监听器,我们可以方便的实现这些操作。
在容器启动开始时:
package com.neo.filter; import org.springframework.boot.context.event.ApplicationStartingEvent; import org.springframework.context.ApplicationListener; public class ApplicationStartingEventListener implements ApplicationListener<ApplicationStartingEvent> { @Override public void onApplicationEvent(ApplicationStartingEvent arg0) { System.err.println("ApplicationStartingEventListener"); } }
在容器启动完成后执行操作:
package com.neo.filter; import org.springframework.boot.context.event.ApplicationStartedEvent; import org.springframework.context.ApplicationListener; import org.springframework.core.Ordered; public class ApplicationStartedEventListener implements ApplicationListener<ApplicationStartedEvent>,Ordered { @Override public void onApplicationEvent(ApplicationStartedEvent ev) { System.out.println("ApplicationStartedEventListener1"); } @Override public int getOrder() { return 1; } }
如果需要有顺序执行,我们可以实现Ordered接口,只越小,越先执行。
package com; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import com.neo.filter.ApplicationStartedEventListener; import com.neo.filter.ApplicationStartedEventListener2; import com.neo.filter.ApplicationStartingEventListener; @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication app=new SpringApplication(DemoApplication.class); app.addListeners(new ApplicationStartedEventListener()); app.addListeners(new ApplicationStartingEventListener()); app.addListeners(new ApplicationStartedEventListener2()); app.run(args); } }
以上就是关于springboot容器启动事件的相关知识点以及实例代码,感谢大家对脚本之家的支持。
相关文章
Spring BeanPostProcessor源码示例解析
这篇文章主要为大家介绍了Spring BeanPostProcessor源码示例解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-01-01Java中的FileInputStream 和 FileOutputStream 介绍_动力节点Java学院整理
FileInputStream 是文件输入流,它继承于InputStream。FileOutputStream 是文件输出流,它继承于OutputStream。接下来通过本文给大家介绍Java中的FileInputStream 和 FileOutputStream,需要的朋友可以参考下2017-05-05Mybatis-Plus接口BaseMapper与Services使用详解
这篇文章主要为大家介绍了Mybatis-Plus接口BaseMapper与Services使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-05-05
最新评论