spring源碼分析初始化bean的遺留問題

我們在spring初始化bean的過程中在最后遺留了一個問題,本篇來說,問題是在#InitializingBean(...)中首先是對bean的判斷,可以通過#afterPropertiesSet()方法來處理,具體詳情請看spring容器之創(chuàng)建bean的終結(jié)篇,當(dāng)然還有我們在配置文件中配置的init-method方法等

InitializingBean

該接口位于org.springframework.beans.factory包下,只有一個afterPropertiesSet()方法,其主要的作用是對bean自定義的實(shí)現(xiàn)過程,屬性設(shè)置的檢查等操作.

public interface InitializingBean {

/**
 * Invoked by the containing {@code BeanFactory} after it has set all bean properties
 * and satisfied {@link BeanFactoryAware}, {@code ApplicationContextAware} etc.
 * <p>This method allows the bean instance to perform validation of its overall
 * configuration and final initialization when all bean properties have been set.
 * @throws Exception in the event of misconfiguration (such as failure to set an
 * essential property) or if initialization fails for any other reason
 */
void afterPropertiesSet() throws Exception;

大概的可以了解到afterPropertiesSet()是在實(shí)例化時進(jìn)行對bean的屬性的檢查,前提是我們此刻的bean是已經(jīng)完成了Aware和BeanPostProcesser的設(shè)置過程,接下來我們簡單的寫個Demo來了解下該方法的作用:

case

定義一個類實(shí)現(xiàn)InitializingBean接口

public class InitializingBeanCase implements InitializingBean {

public String getName() {
    return name;
}

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

private String name;

public void afterPropertiesSet() throws Exception {

    System.out.println("實(shí)例化bean開始了....");
    this.name = "9527";

}

代碼簡單,我們直接給name屬性賦值,將該類交給spring容器來創(chuàng)建:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="initializingBeanCase"  class="com.sgcc.InitializingBean.InitializingBeanCase">
    <property name="name" value="9528"/>
    </bean>
</beans>

在配置文件中我們是想讓spring容器幫我們創(chuàng)建name為9528的bean

測試代碼:
public class App {

public static void main(String[] args) {
    ClassPathResource resource = new ClassPathResource("InitializingBeanCaseConfig.xml");
    DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
    XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(factory);
    reader.loadBeanDefinitions(resource);
    InitializingBeanCase initializingBeanCase = (InitializingBeanCase) factory.getBean("initializingBeanCase");

    System.out.println("name:"+initializingBeanCase.getName());
}

}

運(yùn)行結(jié)果:
image.png

看到結(jié)果的時候我也蒙了,奧明白了,該方法原來是spring給我們提供了一種在初始化時,動態(tài)修改bean的屬性的途徑,使得我們更加隨心操作bean的一種手段.

初始過程

既然該方法是在初始化時來操作bean的屬性的,我們來看一下,初始化過程#invokeInitMethods(...)的過程,該方法調(diào)用的前提是判斷我們的bean是否是實(shí)現(xiàn)了InitializingBean接口,來看代碼:

protected void invokeInitMethods(String beanName, final Object bean, @Nullable RootBeanDefinition mbd)
        throws Throwable {
    //首先是檢查是否是InitializingBean,如果是需要調(diào)用afterPropertiesSet
    boolean isInitializingBean = (bean instanceof InitializingBean);
    if (isInitializingBean && (mbd == null || !mbd.isExternallyManagedInitMethod("afterPropertiesSet"))) {
        if (logger.isTraceEnabled()) {
            logger.trace("Invoking afterPropertiesSet() on bean with name '" + beanName + "'");
        }
        //在系統(tǒng)安全管理器的環(huán)境下
        if (System.getSecurityManager() != null) {
            try {
                AccessController.doPrivileged((PrivilegedExceptionAction<Object>) () -> {
                    //1.初始化屬性
                    ((InitializingBean) bean).afterPropertiesSet();
                    return null;
                }, getAccessControlContext());
            }
            catch (PrivilegedActionException pae) {
                throw pae.getException();
            }
        }
        else {
            //同上
            ((InitializingBean) bean).afterPropertiesSet();
        }
    }

    if (mbd != null && bean.getClass() != NullBean.class) {
        //判斷是否指定了 init-method()
        //如果指定了 init-method()淹辞,則再調(diào)用指定的init-method
        String initMethodName = mbd.getInitMethodName();
        if (StringUtils.hasLength(initMethodName) &&
                !(isInitializingBean && "afterPropertiesSet".equals(initMethodName)) &&
                !mbd.isExternallyManagedInitMethod(initMethodName)) {
            //2.激活自定義方法的入口
             // 利用反射機(jī)制執(zhí)行
            invokeCustomInitMethod(beanName, bean, mbd);
        }
    }
}

簡單的來看下流程:

  • 首先檢查bean是否是實(shí)現(xiàn)了InitializingBean接口,如果實(shí)現(xiàn)了則調(diào)用afterPropertiesSet方法
  • 同時也檢查是否指定了init-method,如果指定了,則通過反射機(jī)制調(diào)用指定的init-method

init-method是spring提供的另外一種方法,我們來看

init-method

還記得我們在spring容器之Bean標(biāo)簽的解析文章中說過關(guān)于init-method標(biāo)簽,該標(biāo)簽在這里體現(xiàn)了它的作用,主要是在bean初始化的過程中調(diào)用指定的init-method方法來替代InitializingBean接口,我們通過案例來看:

init-method案例

我們自定義一個類,其中自定義一個方法:

public class InitMethodCase {

private String name;

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}
//自定義方法setInitMethod
public void setInitMethod(){

    System.out.println("調(diào)用了init的初始化過程......");
    this.name = "9527";
}

來看配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

<bean id="initMethodCase" class="com.sgcc.initMethod.InitMethodCase" init-method="setInitMethod">
    <property name="name" value="9529"/>
</bean>
</beans>

測試代碼:

public class App {

public static void main(String[] args) {
    ClassPathResource resource = new ClassPathResource("InitMethodCaseConfig.xml");
    DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
    XmlBeanDefinitionReader reader = new XmlBeanDefinitionReader(factory);
    reader.loadBeanDefinitions(resource);
    InitMethodCase initMethodCase = (InitMethodCase) factory.getBean("initMethodCase");
    System.out.println("name="+initMethodCase.getName());

}

結(jié)果:

結(jié)果圖.png

可以看到的是跟我們之前實(shí)現(xiàn)InitializingBean的結(jié)果是一樣的,只是我們這里自定義方法,交給spring通過反射機(jī)制去調(diào)用方法,完全替代了医舆,InitializingBean接口,實(shí)際上效率要高一些,到這里InitializingBean和init-method 已經(jīng)分析完了

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市象缀,隨后出現(xiàn)的幾起案子蔬将,更是在濱河造成了極大的恐慌,老刑警劉巖央星,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件霞怀,死亡現(xiàn)場離奇詭異,居然都是意外死亡莉给,警方通過查閱死者的電腦和手機(jī)毙石,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來颓遏,“玉大人徐矩,你說我怎么就攤上這事∪保” “怎么了滤灯?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我鳞骤,道長窒百,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任豫尽,我火速辦了婚禮篙梢,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘拂募。我一直安慰自己庭猩,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布陈症。 她就那樣靜靜地躺著蔼水,像睡著了一般。 火紅的嫁衣襯著肌膚如雪录肯。 梳的紋絲不亂的頭發(fā)上趴腋,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機(jī)與錄音论咏,去河邊找鬼优炬。 笑死,一個胖子當(dāng)著我的面吹牛厅贪,可吹牛的內(nèi)容都是我干的蠢护。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼养涮,長吁一口氣:“原來是場噩夢啊……” “哼葵硕!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起贯吓,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤懈凹,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后悄谐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體介评,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年爬舰,在試婚紗的時候發(fā)現(xiàn)自己被綠了们陆。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡洼专,死狀恐怖棒掠,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情屁商,我是刑警寧澤烟很,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布颈墅,位于F島的核電站,受9級特大地震影響雾袱,放射性物質(zhì)發(fā)生泄漏恤筛。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一芹橡、第九天 我趴在偏房一處隱蔽的房頂上張望毒坛。 院中可真熱鬧,春花似錦林说、人聲如沸煎殷。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽豪直。三九已至,卻和暖如春珠移,著一層夾襖步出監(jiān)牢的瞬間弓乙,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工钧惧, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留暇韧,地道東北人。 一個月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓浓瞪,卻偏偏與公主長得像懈玻,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子乾颁,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

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