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

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

一、Spring中bean的作用域

Spring為我們提供了7種作用域管理方式,其中singletonprototype為最常使用的兩個,而剩下的5個scope描述僅用于web相關的ApplicationContext

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

Scope 描述
singleton (默認)當scope設置為singleton時,一個IOC容器只會對一個bean定義創(chuàng)建一個實例
prototype 當scope設置為prototype時,每次請求bean時IOC容器會創(chuàng)建一個新的實例
request 打個socpe設置為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的單例和設計模式中所提到的單例并不相同:
Spring的單例:一個IOC容器僅創(chuàng)建一個bean實例;
設計模式的單例:ClassLoader中只有一個class存在;

二、singleton 作用域

當將bean的scope設置為singleton,Spring的IOC容器將僅生成和管理一個bean實例,且當你是用id或name獲取bean實例時,IOC容器會返回共享的bean實例。如下圖所示,不同的bean引用accountDao,IOC容器為它們返回同一個實例的引用。

singleton實例圖

由于singleton是為scope的默認方式,因此我們有兩種方式將bean的scope設置為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設置為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"/>

四、例子

為測試以上性質,我們創(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)輸出結果如下:

Prototype bean test:
1
2
3
4

 singleton bean test:
1
1
1
1

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

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

測試代碼下載地址

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 230,563評論 6 544
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 99,694評論 3 429
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
    開封第一講書人閱讀 178,672評論 0 383
  • 文/不壞的土叔 我叫張陵,是天一觀的道長。 經(jīng)常有香客問我,道長,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 63,965評論 1 318
  • 正文 為了忘掉前任,我火速辦了婚禮,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好,可當我...
    茶點故事閱讀 72,690評論 6 413
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 56,019評論 1 329
  • 那天,我揣著相機與錄音,去河邊找鬼。 笑死,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 44,013評論 3 449
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 43,188評論 0 290
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 49,718評論 1 336
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 41,438評論 3 360
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 43,667評論 1 374
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 39,149評論 5 365
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響,放射性物質發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 44,845評論 3 351
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 35,252評論 0 28
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 36,590評論 1 295
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人。 一個月前我還...
    沈念sama閱讀 52,384評論 3 400
  • 正文 我出身青樓,卻偏偏與公主長得像,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 48,635評論 2 380

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