Spring boot 中Bean初始化的順序-詳解

此篇文章主要演示Spring boot中bean初始化時各個組件的執(zhí)行順序七蜘,以便開發(fā)者能在開發(fā)過程中正確選擇合適的初始化方式

Bean定義:

package com.example.demo.beandemo;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.*;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;

import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;

public class BeanInitOrder implements InitializingBean, DisposableBean, BeanNameAware, BeanFactoryAware, ApplicationContextAware {

    private String name;

    public BeanInitOrder() {
        System.out.println("執(zhí)行構造方法");
    }

    public void initMethod() {
        System.out.println("執(zhí)行bean定義的initMethod方法");
    }

    public void destroyMethod() {
        System.out.println("執(zhí)行bean定義的destroyMethod方法");
    }

    @PostConstruct
    public void postConstruct() {
        System.out.println("執(zhí)行PostConstruct方法");
    }

    @PreDestroy
    public void preDestroy() {
        System.out.println("執(zhí)行PreDestroy方法");
    }

    public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
        System.out.println("注入BeanFactory");
    }

    public void setBeanName(String s) {
        System.out.println("注入BeanName");
    }

    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        System.out.println("注入ApplicationContext");
    }


    public void destroy() throws Exception {
        System.out.println("執(zhí)行量DisposableBean的destroy方法");
    }

    public void afterPropertiesSet() throws Exception {
        System.out.println("執(zhí)行InitializingBean的afterPropertiesSet方法");
    }

    public void setName(String name){
        this.name=name;
    }

    public String getName() {
        return name;
    }

}

后置處理器BeanPostProcessor :

package com.example.demo.beandemo;

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;


public class InitBeanHandleBeanPostProcessor implements BeanPostProcessor {

    @Override
    public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
        if (beanName.equals("getBeanInitOrder")) {
            System.out.println("執(zhí)行BeanPostProcessor的postProcessBeforeInitialization方法");
        }
        return bean;
    }

    @Override
    public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
        if (beanName.equals("getBeanInitOrder")) {
            System.out.println("執(zhí)行BeanPostProcessor的postProcessAfterInitialization方法");
        }
        return bean;
    }
}

屬性處理器BeanFactoryPostProcessor :

package com.example.demo.beandemo;

import org.springframework.beans.BeansException;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;

public class InitBeanHandleBeanFactoryPostProcessor implements BeanFactoryPostProcessor {
    @Override
    public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException {BeanDefinition getBeanInitOrder = beanFactory.getBeanDefinition("getBeanInitOrder");
        MutablePropertyValues propertyValues = getBeanInitOrder.getPropertyValues();
        propertyValues.addPropertyValue("name", "mateEgg");
        System.out.println("執(zhí)行BeanFactoryPostProcessor的postProcessBeanFactory方法");
    }
}

配置類:

package com.example.demo.config;

import com.example.demo.beandemo.BeanInitOrder;
import com.example.demo.beandemo.InitBeanHandleBeanPostProcessor;
import com.example.demo.beandemo.InitBeanHandleBeanFactoryPostProcessor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.annotation.PostConstruct;

@Configuration
public class BeanInitOrderConfig {


    @Bean(initMethod = "initMethod" ,destroyMethod = "destroyMethod")
    public BeanInitOrder getBeanInitOrder(){
        return new BeanInitOrder();
    }

    @Bean
    public InitBeanHandleBeanPostProcessor getInitBeanHandle(){
        return new InitBeanHandleBeanPostProcessor();
    }

    @Bean
    public static InitBeanHandleBeanFactoryPostProcessor getInitBeanHandleBeanFactoryPostProcessor(){
        return new InitBeanHandleBeanFactoryPostProcessor();
    }

}

啟動類:

package com.example.demo;

import com.example.demo.bean.Car;
import com.example.demo.beandemo.BeanInitOrder;
import com.sun.corba.se.spi.orb.ParserImplBase;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.web.bind.annotation.InitBinder;

import javax.annotation.PostConstruct;

@SpringBootApplication
public class DemoApplication {

    @Autowired
    private BeanInitOrder beanInitOrder;

    public static void main(String[] args) {
        ConfigurableApplicationContext run = SpringApplication.run(DemoApplication.class, args);
    }

    @PostConstruct
    public void test(){
        System.out.println(beanInitOrder.getName());
    }
 }

輸出結果:

執(zhí)行BeanFactoryPostProcessor的postProcessBeanFactory方法
2019-01-24 21:59:57.822  INFO 8118 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'beanInitOrderConfig' of type [com.example.demo.config.BeanInitOrderConfig$$EnhancerBySpringCGLIB$$3f223dec] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2019-01-24 21:59:58.137  INFO 8118 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8082 (http)
2019-01-24 21:59:58.159  INFO 8118 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2019-01-24 21:59:58.160  INFO 8118 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.14]
2019-01-24 21:59:58.167  INFO 8118 --- [           main] o.a.catalina.core.AprLifecycleListener   : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/Users/mac/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
2019-01-24 21:59:58.246  INFO 8118 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2019-01-24 21:59:58.246  INFO 8118 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1493 ms
執(zhí)行構造方法
注入BeanName
注入BeanFactory
注入ApplicationContext
執(zhí)行BeanPostProcessor的postProcessBeforeInitialization方法
執(zhí)行PostConstruct方法
執(zhí)行InitializingBean的afterPropertiesSet方法
執(zhí)行bean定義的initMethod方法
執(zhí)行BeanPostProcessor的postProcessAfterInitialization方法
mateEgg
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末淋袖,一起剝皮案震驚了整個濱河市弥喉,隨后出現(xiàn)的幾起案子乏德,更是在濱河造成了極大的恐慌,老刑警劉巖踏幻,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件谱醇,死亡現(xiàn)場離奇詭異,居然都是意外死亡夺蛇,警方通過查閱死者的電腦和手機疚漆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來刁赦,“玉大人娶聘,你說我怎么就攤上這事∩趼觯” “怎么了丸升?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長牺氨。 經(jīng)常有香客問我狡耻,道長,這世上最難降的妖魔是什么猴凹? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任夷狰,我火速辦了婚禮,結果婚禮上郊霎,老公的妹妹穿的比我還像新娘沼头。我一直安慰自己,他們只是感情好书劝,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布进倍。 她就那樣靜靜地躺著,像睡著了一般购对。 火紅的嫁衣襯著肌膚如雪猾昆。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天骡苞,我揣著相機與錄音垂蜗,去河邊找鬼坑赡。 笑死,一個胖子當著我的面吹牛么抗,可吹牛的內(nèi)容都是我干的毅否。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼蝇刀,長吁一口氣:“原來是場噩夢啊……” “哼螟加!你這毒婦竟也來了?” 一聲冷哼從身側響起吞琐,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤捆探,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后站粟,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體黍图,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年奴烙,在試婚紗的時候發(fā)現(xiàn)自己被綠了助被。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡切诀,死狀恐怖揩环,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情幅虑,我是刑警寧澤丰滑,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站倒庵,受9級特大地震影響褒墨,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜擎宝,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一郁妈、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧认臊,春花似錦圃庭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽涂屁。三九已至,卻和暖如春灰伟,著一層夾襖步出監(jiān)牢的瞬間拆又,已是汗流浹背儒旬。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留帖族,地道東北人栈源。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像竖般,于是被迫代替她去往敵國和親甚垦。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容