91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Spring Boot怎么監聽應用事件

發布時間:2021-04-09 16:00:14 來源:億速云 閱讀:270 作者:Leah 欄目:編程語言

使用Spring Boot怎么監聽應用事件?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1. Spring Boot特有的應用事件

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

  • ApplicationStartingEvent:在任何處理(除了注冊listener和initializer)開始之前發送。

  • ApplicationEnvironmentPreparedEvent: 在context創建之前,而用到context中的Environment已經被識別時發送。

  • ApplicationContextInitializedEvent: SpringApplication正在啟動,ApplicationContext已準備好且ApplicationContextInitializer已被調用但是bean的定義還沒有被加載時發送。

  • ApplicationPreparedEvent: 在context刷新之前,在bean的定義已經被加載之后調用。

  • ApplicationStartedEvent: 在任何應用和command-line runner調用之前,而context已經被刷新時發送。

  • ApplicationReadyEvent: 在任何應用和command-line runner被調用的時候發送,它意味著應用可以接受請求了。

  • ApplicationFailedEvent: 在啟動時有異常的時候發送。

有些事件是在ApplicationContext創建之前觸發的,所以我們不能用常規的注冊成bean的事件監聽方式:

  • 注解了@EventListener注解分方法的類注冊的bean;

  • 實現了ApplicationListener<Event>接口的類注冊的bean。

像ApplicationStartedEvent和ApplicationReadyEvent是ApplicationContext創建之后觸發的,可以用上述兩種方式來監聽事件。

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(...)

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

src/main/resources/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());
 }
}

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滦平县| 烟台市| 政和县| 双柏县| 焉耆| 越西县| 崇左市| 宜宾县| 松滋市| 逊克县| 保康县| 安康市| 句容市| 烟台市| 绥德县| 肇源县| 湖口县| 临海市| 连州市| 宁明县| 泸西县| 海城市| 赤壁市| 双鸭山市| 筠连县| 宜兴市| 怀仁县| 团风县| 彭泽县| 锡林浩特市| 永定县| 三明市| 葫芦岛市| 民权县| 那坡县| 武穴市| 清河县| 秀山| 紫金县| 汽车| 郓城县|