Spring Boot容器加载时执行特定操作(推荐)

这篇文章主要介绍了Spring Boot容器加载时执行特定操作及spring内置的事件,需要的朋友可以参考下

某些情况下我们需要在 Spring Boot 容器启动加载完后执行一些操作,此时可以通过实现 ApplicationListener 接口,并指定相应事件来执行操作,例如启动某些自定义守护线程

ApplicationContextEvent 是由 ApplicationContext 引发的事件基类,它有几个实现类:

ContextRefreshedEvent :ApplicationContext 容器初始化或者刷新时触发该事件,执行一次

ContextStartedEvent :当使用 ConfigurableApplicationContext 接口的 start() 方法启动 ApplicationContext 容器时触发该事件

ContextClosedEvent :当使用 ConfigurableApplicationContext 接口的 close() 方法关闭 ApplicationContext 容器时触发该事件

ContextStopedEvent : 当使用 ConfigurableApplicationContext 接口的 stop() 方法停止 ApplicationContext 容器时触发该事件

代码例子

@Component public class ApplicationStartup implements ApplicationListener { @Override public void onApplicationEvent(ContextRefreshedEvent event) { System.out.println("容器初始化或者刷新时触发该事件,执行一次"); } }

总结

以上所述是小编给大家介绍的Spring Boot容器加载时执行特定操作,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程之家网站的支持

相关文章

Java中的String是不可变对象 在面向对象及函数编程语言中,不...
String, StringBuffer 和 StringBuilder 可变性 String不可变...
序列化:把对象转换为字节序列的过程称为对象的序列化. 反序...
先说结论,是对象!可以继续往下看 数组是不是对象 什么是对...
为什么浮点数 float 或 double 运算的时候会有精度丢失的风险...
面试题引入 这里引申出一个经典问题,看下面代码 Integer a ...