Spring學習手冊(5)—— bean作用域

Spring學習手冊(4)—— Spring 依賴注入中介紹了Spring依賴注入的基本方式以及各種類型的參數(shù)注入的方式。本文我們詳細介紹下bean的作用域。

一、Spring中bean的作用域

Spring為我們提供了7種作用域管理方式蹬碧,其中singletonprototype為最常使用的兩個琉历,而剩下的5個scope描述僅用于web相關(guān)的ApplicationContext坠七。

下表簡單介紹該7種方式:

Scope 描述
singleton (默認)當scope設(shè)置為singleton時水醋,一個IOC容器只會對一個bean定義創(chuàng)建一個實例
prototype 當scope設(shè)置為prototype時,每次請求bean時IOC容器會創(chuàng)建一個新的實例
request 打個socpe設(shè)置為request時彪置,IOC容器為每一個HTTP請求創(chuàng)建一個bean實例拄踪,該bean盡在該?HTTP請求內(nèi)有效
session 每一個HTTP請求產(chǎn)生一個bean實例,該實例只在該HTTP session內(nèi)有效
globalSession
application bean生命周期限定在ServletContext 生命周期內(nèi)
websocket

本文我們只介紹最常用的prototypesingleton作用域拳魁。

Tip:Spring的單例和設(shè)計模式中所提到的單例并不相同:
Spring的單例:一個IOC容器僅創(chuàng)建一個bean實例惶桐;
設(shè)計模式的單例:ClassLoader中只有一個class存在;

二潘懊、singleton 作用域

當將bean的scope設(shè)置為singleton姚糊,Spring的IOC容器將僅生成和管理一個bean實例,且當你是用id或name獲取bean實例時授舟,IOC容器會返回共享的bean實例救恨。如下圖所示,不同的bean引用accountDao释树,IOC容器為它們返回同一個實例的引用肠槽。

singleton實例圖

由于singleton是為scope的默認方式擎淤,因此我們有兩種方式將bean的scope設(shè)置為singleton

<bean id="accountService" class="com.foo.DefaultAccountService"/>

<!-- the following is equivalent, though redundant (singleton scope is the default) -->
<bean id="accountService" class="com.foo.DefaultAccountService" scope="singleton"/>

三秸仙、prototype作用域

當bean的scope設(shè)置為prototype嘴拢,Spring的IOC容器會在每次請求該bean時,都會創(chuàng)建一個新的實例出來寂纪。如下圖所示席吴,不同的bean定義需要注入accountDao,由于accountDao配置的作用域為prototype,所以IOC容器為每個bean創(chuàng)建一個新的accountDao實例捞蛋。

prototype實例圖

prototype作用域配置也很簡單抢腐,只需要在配置bean定義時將scope屬性配置為prototype。

<bean id="accountService" class="com.foo.DefaultAccountService" scope="prototype"/>

四襟交、例子

為測試以上性質(zhì)迈倍,我們創(chuàng)建PrototypeBeanSingletonBean類捣域,類內(nèi)部有計數(shù)器啼染,每當一個新的實例被創(chuàng)建時,內(nèi)部計數(shù)器加1?焕梅。代碼如下:

PrototypeBean:

public class PrototypeBean {

    private static int  num = 0;

    private int count;
    public PrototypeBean() {
        num++;
        count = num;
    }

    public int getCount() {
        return count;
    }
}

SingletonBean:

public class SingletonBean {

    private static int num =0;

    private int count;

    public SingletonBean() {
        num++;
        count = num;
    }

    public int getCount() {
        return count;
    }
}

為了使用該類迹鹅,我們創(chuàng)建UsePrototypeBeanExample類系列和UseSingletonBeanExample類系列,該系列類實現(xiàn)方式相同贞言,只是類名不同斜棚,這里我們列出一個例子:

public class UsePrototypeBeanExample1 {

    private PrototypeBean prototypeBean;


    public void setPrototypeBean(PrototypeBean prototypeBean) {
        this.prototypeBean = prototypeBean;
    }

    public PrototypeBean getPrototypeBean() {
        return prototypeBean;
    }
}

以上實驗代碼準備好后,我們將配置組裝我們的bean信息:

<?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-4.3.xsd">


    <!-- 定義prototype bean -->
    <bean id="prototypeBean" class="com.liangwei.learnspring.PrototypeBean" scope="prototype"/>

    <!-- 定義singleton bean-->
    <bean id="singletonBean" class="com.liangwei.learnspring.SingletonBean" scope="singleton"/>

    <!-- 依賴 prototype bean 屬性注入-->
    <bean id="prototypeExample1" class="com.liangwei.learnspring.UsePrototypeBeanExample1">
        <property name="prototypeBean" ref="prototypeBean"/>
    </bean>

    <bean id="prototypeExample2" class="com.liangwei.learnspring.UsePrototypeBeanExample2">
        <property name="prototypeBean" ref="prototypeBean"/>
    </bean>

    <bean id="prototypeExample3" class="com.liangwei.learnspring.UsePrototypeBeanExample3">
        <property name="prototypeBean" ref="prototypeBean"/>
    </bean>

    <!--依賴singleton bean 屬性注入-->
    <bean id="singletonExample1" class="com.liangwei.learnspring.UseSingletonBeanExample1">
        <property name="singletonBean" ref="singletonBean"/>
    </bean>

    <bean id="singletonExample2" class="com.liangwei.learnspring.UseSingletonBeanExample2">
        <property name="singletonBean" ref="singletonBean"/>
    </bean>

    <bean id="singletonExample3" class="com.liangwei.learnspring.UseSingletonBeanExample3">
        <property name="singletonBean" ref="singletonBean"/>
    </bean>
</beans>

測試代碼:

public class Application {

    public static void main(String[] args){


        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");

        System.out.println("Prototype bean test:");
        UsePrototypeBeanExample1 usePrototypeBeanExample1 = applicationContext.getBean("prototypeExample1",UsePrototypeBeanExample1.class);
        System.out.println(usePrototypeBeanExample1.getPrototypeBean().getCount());

        UsePrototypeBeanExample2 usePrototypeBeanExample2 = applicationContext.getBean("prototypeExample2",UsePrototypeBeanExample2.class);
        System.out.println(usePrototypeBeanExample2.getPrototypeBean().getCount());


        UsePrototypeBeanExample3 usePrototypeBeanExample3 = applicationContext.getBean("prototypeExample3",UsePrototypeBeanExample3.class);
        System.out.println(usePrototypeBeanExample3.getPrototypeBean().getCount());

        System.out.println(applicationContext.getBean("prototypeBean",PrototypeBean.class).getCount());

        System.out.println("\n singleton bean test:");

        UseSingletonBeanExample1 useSingletonBeanExample1 = applicationContext.getBean("singletonExample1",UseSingletonBeanExample1.class);
        System.out.println(useSingletonBeanExample1.getSingletonBean().getCount());

        UseSingletonBeanExample2 useSingletonBeanExample2 = applicationContext.getBean("singletonExample2",UseSingletonBeanExample2.class);
        System.out.println(useSingletonBeanExample2.getSingletonBean().getCount());
        UseSingletonBeanExample3 useSingletonBeanExample3 = applicationContext.getBean("singletonExample3",UseSingletonBeanExample3.class);
        System.out.println(useSingletonBeanExample3.getSingletonBean().getCount());
        System.out.println(applicationContext.getBean("singletonBean",SingletonBean.class).getCount());
    }
}

運行代碼我們會發(fā)現(xiàn)輸出結(jié)果如下:

Prototype bean test:
1
2
3
4

 singleton bean test:
1
1
1
1

通過測試實驗代碼我們驗證了如下結(jié)論:
prototype作用域:

  • 需要獲取prototype作用域的bean時會創(chuàng)建一個全新的bean實例该窗;
  • 無論使用屬性注入還是使用getBean的方式都會獲得一個新的bean實例
    singleton作用域:
  • 需要獲取singleton作用域的bean時會共享同一個bean實例弟蚀;
  • 無論使用屬性注入還是使用getBean的方式獲得的都為共享的bean實例。

測試代碼下載地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末酗失,一起剝皮案震驚了整個濱河市义钉,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌规肴,老刑警劉巖捶闸,帶你破解...
    沈念sama閱讀 222,729評論 6 517
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異拖刃,居然都是意外死亡删壮,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 95,226評論 3 399
  • 文/潘曉璐 我一進店門兑牡,熙熙樓的掌柜王于貴愁眉苦臉地迎上來央碟,“玉大人,你說我怎么就攤上這事发绢∮菜#” “怎么了垄琐?”我有些...
    開封第一講書人閱讀 169,461評論 0 362
  • 文/不壞的土叔 我叫張陵,是天一觀的道長经柴。 經(jīng)常有香客問我狸窘,道長,這世上最難降的妖魔是什么坯认? 我笑而不...
    開封第一講書人閱讀 60,135評論 1 300
  • 正文 為了忘掉前任翻擒,我火速辦了婚禮,結(jié)果婚禮上牛哺,老公的妹妹穿的比我還像新娘陋气。我一直安慰自己,他們只是感情好引润,可當我...
    茶點故事閱讀 69,130評論 6 398
  • 文/花漫 我一把揭開白布巩趁。 她就那樣靜靜地躺著,像睡著了一般淳附。 火紅的嫁衣襯著肌膚如雪议慰。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 52,736評論 1 312
  • 那天奴曙,我揣著相機與錄音别凹,去河邊找鬼。 笑死洽糟,一個胖子當著我的面吹牛炉菲,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播坤溃,決...
    沈念sama閱讀 41,179評論 3 422
  • 文/蒼蘭香墨 我猛地睜開眼拍霜,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了浇雹?” 一聲冷哼從身側(cè)響起沉御,我...
    開封第一講書人閱讀 40,124評論 0 277
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎昭灵,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體伐谈,經(jīng)...
    沈念sama閱讀 46,657評論 1 320
  • 正文 獨居荒郊野嶺守林人離奇死亡烂完,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,723評論 3 342
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了诵棵。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片抠蚣。...
    茶點故事閱讀 40,872評論 1 353
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖履澳,靈堂內(nèi)的尸體忽然破棺而出嘶窄,到底是詐尸還是另有隱情怀跛,我是刑警寧澤,帶...
    沈念sama閱讀 36,533評論 5 351
  • 正文 年R本政府宣布柄冲,位于F島的核電站吻谋,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏现横。R本人自食惡果不足惜漓拾,卻給世界環(huán)境...
    茶點故事閱讀 42,213評論 3 336
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望戒祠。 院中可真熱鬧骇两,春花似錦、人聲如沸姜盈。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,700評論 0 25
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽馏颂。三九已至栋操,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間饱亮,已是汗流浹背矾芙。 一陣腳步聲響...
    開封第一講書人閱讀 33,819評論 1 274
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留近上,地道東北人剔宪。 一個月前我還...
    沈念sama閱讀 49,304評論 3 379
  • 正文 我出身青樓,卻偏偏與公主長得像壹无,于是被迫代替她去往敵國和親葱绒。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 45,876評論 2 361

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