springboot監(jiān)聽器啟動分析

先上一段代碼

// 繼承ApplicationListener發(fā)布一個監(jiān)聽器售滤,并沒有指定范型(類似ApplicationListener< ContextRefreshedEvent >這樣只能監(jiān)聽ContextRefreshedEvent事件)
// 所以,所有的發(fā)布事件全都可以被監(jiān)聽到
@Slf4j
@Component
public class AppApplicationListener implements ApplicationListener {

    @Override
    public void onApplicationEvent(ApplicationEvent event) {
         // 1. ContextRefreshedEvent事件,在ApplicationContext完成刷新refreshed后調用
        if (event instanceof ContextRefreshedEvent){
            log.info("================:{}", "ContextRefreshedEvent");
        }
        if (event instanceof ContextStartedEvent){
            log.info("================:{}", "ContextStartedEvent");
        }
        if (event instanceof ContextClosedEvent){
            log.info("================:{}", "ContextClosedEvent");
        }
        if (event instanceof ContextStoppedEvent){
            log.info("================:{}", "ContextStoppedEvent");
        }
        // 2. ServletWebServerInitializedEvent事件捌蚊,在ApplicationContext完成刷新refreshed并啟動tomcat容器后調用
        if (event instanceof ServletWebServerInitializedEvent){
            ServletWebServerApplicationContext applicationContext = ((ServletWebServerInitializedEvent) event).getApplicationContext();
            String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();
            for (String beanDefinitionName : beanDefinitionNames) {
                log.info(beanDefinitionName);
            }
            log.info("================:{}", "ServletWebServerInitializedEvent");
        }
        if (event instanceof ApplicationReadyEvent){
            log.info("================:{}", "ApplicationReadyEvent");
        }
        if (event instanceof ApplicationStartedEvent){
            log.info("================:{}", "ApplicationStartedEvent");
        }

        log.info(">>>>>>>>>>>>>>>>:{}\n", event.getClass().getName());
    }
}
  • ContextRefreshedEvent事件 和 ServletWebServerInitializedEvent事件
    1.首先枢步,ContextRefreshedEvent通過繼承ApplicationContextEvent乾忱,ApplicationContextEvent繼承ApplicationEvent創(chuàng)建一個事件屉更。
public class ContextRefreshedEvent extends ApplicationContextEvent {
    public ContextRefreshedEvent(ApplicationContext source) {
        super(source);
    }
}
public abstract class ApplicationContextEvent extends ApplicationEvent {}

????2.其次,發(fā)布一個監(jiān)聽器毯侦,如最上面的代碼哭靖。
????3.最后,發(fā)布事件侈离。


this.refreshContext(context); //啟動類里這里刷新容器 ->進入方法......
this.refresh(context);//  -> 進入方法......
((AbstractApplicationContext)applicationContext).refresh(); // ->進入方法......

// 這個方法是創(chuàng)建tomcat容器
this.onRefresh();
this.registerListeners();
this.finishBeanFactoryInitialization(beanFactory);
// 這個方法里面主要發(fā)布ContextRefreshedEvent事件试幽,啟動tomcat容器并發(fā)布ServletWebServerInitializedEvent事件(即tomcat容器啟動事件)
this.finishRefresh();  // -> 進入方法......

protected void finishRefresh() {
    // 進入可看到this.publishEvent((ApplicationEvent)(new ContextRefreshedEvent(this)));即發(fā)布ContextRefreshedEvent事件
    super.finishRefresh(); // -> 進入方法......
    // 這個方法是啟動tomcat容器
    WebServer webServer = this.startWebServer();
    if (webServer != null) {
        // 發(fā)布ServletWebServerInitializedEvent事件,監(jiān)聽器就可以捕捉到并做處理了
        this.publishEvent(new ServletWebServerInitializedEvent(webServer, this));
    }
}
protected void finishRefresh() {
    this.clearResourceCaches();
    this.initLifecycleProcessor();
    this.getLifecycleProcessor().onRefresh();
    // 發(fā)布ContextRefreshedEvent事件霍狰,監(jiān)聽器就可以捕捉到并做處理了
    this.publishEvent((ApplicationEvent)(new ContextRefreshedEvent(this)));
    LiveBeansView.registerApplicationContext(this);
}
public ConfigurableApplicationContext run(String... args) {
        // 省略無關緊要代碼......
            listeners.started(context);  // 發(fā)布ApplicationStartedEvent事件抡草,進入看源碼道理一樣
            this.callRunners(context, applicationArguments);
        } catch (Throwable var10) {
            this.handleRunFailure(context, var10, exceptionReporters, listeners);
            throw new IllegalStateException(var10);
        }

        try {
            // 發(fā)布ApplicationReadyEvent事件,進入看源碼道理一樣
            listeners.running(context);
            return context;
        } catch (Throwable var9) {
            this.handleRunFailure(context, var9, exceptionReporters, (SpringApplicationRunListeners)null);
            throw new IllegalStateException(var9);
        }
    }

備注:request蔗坯,session等都可以通過監(jiān)聽器是實現(xiàn)業(yè)務邏輯康震,比如統(tǒng)計在線訪問數(shù)量,瀏覽數(shù)等宾濒。自己也可以通過定義事件源和監(jiān)聽器的方式腿短,在對象或者bean被處理的時候發(fā)布事件去進行業(yè)務處理。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市橘忱,隨后出現(xiàn)的幾起案子赴魁,更是在濱河造成了極大的恐慌,老刑警劉巖钝诚,帶你破解...
    沈念sama閱讀 211,743評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件颖御,死亡現(xiàn)場離奇詭異,居然都是意外死亡凝颇,警方通過查閱死者的電腦和手機潘拱,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來拧略,“玉大人芦岂,你說我怎么就攤上這事〉媲” “怎么了禽最?”我有些...
    開封第一講書人閱讀 157,285評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長袱饭。 經常有香客問我川无,道長,這世上最難降的妖魔是什么宁赤? 我笑而不...
    開封第一講書人閱讀 56,485評論 1 283
  • 正文 為了忘掉前任舀透,我火速辦了婚禮栓票,結果婚禮上决左,老公的妹妹穿的比我還像新娘。我一直安慰自己走贪,他們只是感情好佛猛,可當我...
    茶點故事閱讀 65,581評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著坠狡,像睡著了一般继找。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上逃沿,一...
    開封第一講書人閱讀 49,821評論 1 290
  • 那天婴渡,我揣著相機與錄音,去河邊找鬼凯亮。 笑死边臼,一個胖子當著我的面吹牛,可吹牛的內容都是我干的假消。 我是一名探鬼主播柠并,決...
    沈念sama閱讀 38,960評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了臼予?” 一聲冷哼從身側響起鸣戴,我...
    開封第一講書人閱讀 37,719評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎粘拾,沒想到半個月后窄锅,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 44,186評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡缰雇,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,516評論 2 327
  • 正文 我和宋清朗相戀三年酬滤,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片寓涨。...
    茶點故事閱讀 38,650評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡盯串,死狀恐怖,靈堂內的尸體忽然破棺而出戒良,到底是詐尸還是另有隱情体捏,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布糯崎,位于F島的核電站几缭,受9級特大地震影響,放射性物質發(fā)生泄漏沃呢。R本人自食惡果不足惜年栓,卻給世界環(huán)境...
    茶點故事閱讀 39,936評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望薄霜。 院中可真熱鬧某抓,春花似錦、人聲如沸惰瓜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽崎坊。三九已至备禀,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間奈揍,已是汗流浹背曲尸。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留男翰,地道東北人另患。 一個月前我還...
    沈念sama閱讀 46,370評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像奏篙,于是被迫代替她去往敵國和親柴淘。 傳聞我的和親對象是個殘疾皇子迫淹,可洞房花燭夜當晚...
    茶點故事閱讀 43,527評論 2 349

推薦閱讀更多精彩內容