Spring Boot应用事件监听

栏目: Java · 发布时间: 7年前

内容简介:除了Spring框架的事件,Spring Boot的有些事件是在像

1. Spring Boot特有的应用事件

除了Spring框架的事件,Spring Boot的 SpringApplication 也发送了一些自己的事件:

  1. ApplicationStartingEvent :在任何处理(除了注册 listenerinitializer )开始之前发送。
  2. ApplicationEnvironmentPreparedEvent : 在 context 创建之前,而用到 context 中的 Environment 已经被识别时发送。
  3. ApplicationContextInitializedEventSpringApplication 正在启动, ApplicationContext 已准备好且 ApplicationContextInitializer 已被调用但是bean的定义还没有被加载时发送。
  4. ApplicationPreparedEvent : 在 context 刷新之前,在bean的定义已经被加载之后调用。
  5. ApplicationStartedEvent : 在任何应用和 command-line runner 调用之前,而 context 已经被刷新时发送。
  6. ApplicationReadyEvent : 在任何应用和 command-line runner 被调用的时候发送,它意味着应用可以接受请求了。
  7. ApplicationFailedEvent : 在启动时有异常的时候发送。

有些事件是在 ApplicationContext 创建之前触发的,所以我们不能用常规的注册成bean的事件监听方式:

@EventListener
ApplicationListener<Event>

ApplicationStartedEventApplicationReadyEventApplicationContext 创建之后触发的,可以用上述两种方式来监听事件。

2. 如何监听这些事件

我们可以通过下面的方式注册监听:

2.1.  SpringApplication.addListeners(...)

SpringApplication application = new SpringApplication(StartEventsApplication.class);
application.addListeners(
        (ApplicationListener<ApplicationStartingEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
        (ApplicationListener<ApplicationEnvironmentPreparedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
        (ApplicationListener<ApplicationContextInitializedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
        (ApplicationListener<ApplicationPreparedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
        (ApplicationListener<ApplicationStartedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
        (ApplicationListener<ApplicationReadyEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName())
);
application.run(args);

2.2.  SpringApplicationBuilder.listeners(...)

src/main/resources/META-INF/spring.factories 下:

new SpringApplicationBuilder()
            .sources(StartEventsApplication.class)
            .listeners(
                    (ApplicationListener<ApplicationStartingEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
                    (ApplicationListener<ApplicationEnvironmentPreparedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
                    (ApplicationListener<ApplicationContextInitializedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
                    (ApplicationListener<ApplicationPreparedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
                    (ApplicationListener<ApplicationStartedEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName()),
                    (ApplicationListener<ApplicationReadyEvent>) event -> log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName())
                    )
            .run(args);

2.3.  META-INF/spring.factories

org.springframework.context.ApplicationListener=top.wisely.startevents.listeners.ApplicationContextInitializedEventListener, \
                                                top.wisely.startevents.listeners.ApplicationEnvironmentPreparedEventListener, \
                                                top.wisely.startevents.listeners.ApplicationPreparedEventListener, \
                                                top.wisely.startevents.listeners.ApplicationReadyEventListener, \
                                                top.wisely.startevents.listeners.ApplicationStartedEventListener, \
                                                top.wisely.startevents.listeners.ApplicationStartingEventListener

监听器只需实现 ApplicationListener<要监听的接口类型> 接口,无需手动注册为bean:

public class ApplicationStartedEventListener implements ApplicationListener<ApplicationStartedEvent> {
    @Override
    public void onApplicationEvent(ApplicationStartedEvent event) {
        log.info("----------- 监听Spring Boot:" + event.getClass().getSimpleName());
    }
}

以上所述就是小编给大家介绍的《Spring Boot应用事件监听》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

最高人民法院《关于行政诉讼证据若干问题的规定》释义与适用

最高人民法院《关于行政诉讼证据若干问题的规定》释义与适用

李国光 / 人民法院出版社 / 2002-9 / 30.0

为进一步深入贯彻实施《中华人民共和国行政诉讼法》,最高人民法院发布了《关于行政诉讼证据若干问题的规定》。本书即是对《行政证据规定》作出的充分的阐释。《行政证据规定》是我国第一部关于行政诉讼证据问题系统的司法解释,对我国行政审判的发展和行政诉讼制度的完善必将产生重要而深远的影响。本书对这一《行政证据规定》进行阐述,是为了让广大读者更具体深入的了解这一重要的规定。 本书均将《最高人民法院......一起来看看 《最高人民法院《关于行政诉讼证据若干问题的规定》释义与适用》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

SHA 加密
SHA 加密

SHA 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具