以下所有實(shí)現(xiàn)均在springBoot 的環(huán)境下
和bean啟動(dòng)相關(guān)的接口有 以下接口按照bean 實(shí)例化過程中的先后順序書寫
spring 的接口
- bean本身的構(gòu)造器 無參數(shù)
- BeanNameAware ->得到bean 的名字 最先調(diào)用
- BeanFactoryAware ->得到beanFactory
- ApplicationContextAware --> 獲得 ApplicationContext
- InitializingBean ------> bean 初始化完成 調(diào)用
- BeanFactoryPostProcessor -------> 會(huì)在 InitializingBean 初始化后執(zhí)行鸯檬, 傳入 configurableListableBeanFactory,
注意 此 接口 會(huì)影響 @PostConstruct 注解 調(diào)用
- BeanPostProcessor
2017-11-07 19:50:38.458 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 初始化
2017-11-07 19:50:38.463 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 setBeanName
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 setBeanFactory
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 setApplicationContext
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] com.gxgeek.springfeaturesstudy.InitBean : BeanPostProcessor 接口的: postProcessBeforeInitialization com.gxgeek.springfeaturesstudy.InitBean3@149fb594-->com.gxgeek.springfeaturesstudy.InitBean3
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 postConstruct
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] c.gxgeek.springfeaturesstudy.InitBean3 : bean3 afterPropertiesSet
2017-11-07 19:50:38.464 INFO 38542 --- [ restartedMain] com.gxgeek.springfeaturesstudy.InitBean : BeanPostProcessor 接口的: postProcessAfterInitializationcom.gxgeek.springfeaturesstudy.InitBean3@149fb594-->com.gxgeek.springfeaturesstudy.InitBean3
SpringBoot 的接口
- CommandLineRunner 坷剧,ApplicationRunner 容器初始化完成之后開始調(diào)用run方法
在 ==ContextRefreshedEvent== 事件 之后 在 ==ApplicationReadyEvent== 事件之后
spring 和springBoot 啟動(dòng)的事件
spirng 內(nèi)定事件
ContextStartedEvent 事件 // ==暫無發(fā)現(xiàn)任何默認(rèn)注冊(cè)監(jiān)聽==
ContextRefreshedEvent 事件 --->初始化完成上下文調(diào)用(現(xiàn)在只發(fā)現(xiàn)調(diào)用一次 )
ContextStoppedEvent 事件// ==暫無發(fā)現(xiàn)任何默認(rèn)注冊(cè)監(jiān)聽==
ContextClosedEvent 事件 ---> 調(diào)用ConfigurableApplicationContext的close方法的時(shí)候 應(yīng)用調(diào)用响禽。
只調(diào)用一次RequestHandledEvent 事件 ---> 請(qǐng)求完成調(diào)用(注意可能會(huì)調(diào)用多次 )
spirng Boot 內(nèi)定事件
spring-boot擴(kuò)展了spring的ApplicationContextEvent鳞溉,提供了四種事件
按照先后順序 開始執(zhí)行(這四個(gè)事件需要我們手動(dòng)去(addListeners()或?qū)懪渲梦募?)
多個(gè) 逗號(hào)分隔 context.listener.classes=com.gxgeek.springfeaturesstudy.SpringFeaturesStudyApplication.ApplicationListenerEnvironmentPrepared
去監(jiān)聽 不能通過 寫注解或者 去將類變成 bean 實(shí)現(xiàn) 其實(shí)很好理解 變成bean 之后必須 和context 上下文相關(guān)聯(lián) 但是已經(jīng)在上下文中 是不可能接收到 這些事件的)
- ApplicationStartedEvent :spring boot啟動(dòng)開始時(shí)執(zhí)行的事件(==這個(gè)事件沒有觀察到== )
-
ApplicationEnvironmentPreparedEvent:spring boot 對(duì)應(yīng)Enviroment已經(jīng)準(zhǔn)備完畢胸嘴,但此時(shí)上下文context還沒有創(chuàng)建厕氨。
-
ApplicationPreparedEvent:spring boot上下文context創(chuàng)建完成枕稀,但此時(shí)spring中的bean是沒有完全加載完成的杀赢。(可以理解為 最先 注入的bean 可以拿到上下文
注意此時(shí)的上下文中其實(shí)是有少數(shù)的bean 的 三四個(gè)
) - ApplicationFailedEvent:spring boot啟動(dòng)異常時(shí)執(zhí)行事件
boot內(nèi)定的事件注冊(cè) 自定義bean (寫注解 或接口 變成bean 就可以觀察到)
- ApplicationReadyEvent 應(yīng)用可以請(qǐng)求辨萍,意味著端口開始監(jiān)聽 執(zhí)行
總結(jié)
springBoot 啟動(dòng)先后調(diào)用
容器級(jí)別
ApplicationEnvironmentPreparedEvent 事件
ApplicationPreparedEvent 事件
bean 級(jí)別
- bean本身的構(gòu)造器 無參數(shù)
- BeanNameAware ->得到bean 的名字 最先調(diào)用
- BeanFactoryAware ->得到beanFactory
- ApplicationContextAware --> 獲得 ApplicationContext
- @PostConstruct 注解執(zhí)行
- InitializingBean ------> bean 初始化完成 調(diào)用
- BeanFactoryPostProcessor -------> 會(huì)在 InitializingBean 初始化后執(zhí)行棋恼, 傳入 configurableListableBeanFactory,
注意 此 接口 會(huì)影響 @PostConstruct 注解 調(diào)用
- BeanPostProcessor
容器結(jié)束
ContextRefreshedEvent 事件 容器全部實(shí)例化完成
ApplicationRunner,CommandLineRunner 接口實(shí)現(xiàn) 執(zhí)行
ApplicationReadyEvent 事件 --> 可以接受請(qǐng)求發(fā)送該事件