您好,登錄后才能下訂單哦!
這篇文章給大家介紹spring boot 中怎么監聽容器啟動,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
自定義監聽器
@Component public class MyApplicationListener implements ApplicationListener<ContextRefreshedEvent> { @Override public void onApplicationEvent(ContextRefreshedEvent contextRefreshedEvent) { // 獲取spring 上下文 ApplicationContext applicationContext = contextRefreshedEvent.getApplicationContext(); // do your work... }
源碼分析
springboot 啟動應用, 執行 SpringApplication.run(String… args) 方法
run方法中執行完初始化上下文方法后, 會執行this.refreshContext方法, 刷新
經過一堆方法跳轉, 執行 AbstractApplicationContextl類的publishEvent(Object event, @Nullable ResolvableType eventType) 方法
然后執行 SimpleApplicationEventMulticaster.multicastEvent(ApplicationEvent event, @Nullable ResolvableType eventType)
然后依次執行所有監聽器的onApplicationEvent()方法
// 遍歷所有ApplicationListeners, 依次執行ApplicationListener 的onApplicationEvent()方法 public void multicastEvent(ApplicationEvent event, @Nullable ResolvableType eventType) { ResolvableType type = eventType != null ? eventType : this.resolveDefaultEventType(event); Iterator var4 = this.getApplicationListeners(event, type).iterator(); while(var4.hasNext()) { ApplicationListener<?> listener = (ApplicationListener)var4.next(); Executor executor = this.getTaskExecutor(); if (executor != null) { executor.execute(() -> { this.invokeListener(listener, event); }); } else { this.invokeListener(listener, event); } } }
關于spring boot 中怎么監聽容器啟動就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。