91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringIOC容器中bean的作用范圍是什么

發布時間:2021-02-22 17:12:54 來源:億速云 閱讀:178 作者:戴恩恩 欄目:開發技術

這篇文章主要為大家詳細介紹了SpringIOC容器中bean的作用范圍是什么,文中示例代碼介紹的非常詳細,具有一定的參考價值,發現的小伙伴們可以參考一下:

bean的作用范圍:
可以通過scope屬性進行設置:

  • singleton 單例的(默認)

  • prototype 多例的

  • request 作用于web應用的請求范圍

  • session 作用于web應用的會話范圍

  • global-session 作用于集群環境的會話范圍(全局會話范圍)

測試:

<!-- 默認是單例的(singleton)-->
<bean id="human" class="com.entity.Human"></bean>
<bean id="human" class="com.entity.Human" scope="singleton"></bean>
@Test
 public void test(){
  //通過ClassPathXmlApplicationContext對象加載配置文件方式將javabean對象交給spring來管理
  ApplicationContext applicationContext=new ClassPathXmlApplicationContext("bean.xml");
  //獲取Spring容器中的bean對象,通過id和類字節碼來獲取
  Human human = applicationContext.getBean("human", Human.class);
  Human human1 = applicationContext.getBean("human", Human.class);
  System.out.println(human==human1);
 }

結果:

SpringIOC容器中bean的作用范圍是什么

將scope屬性設置為prototype時

  <bean id="human" class="com.entity.Human" scope="prototype"></bean>

結果:

SpringIOC容器中bean的作用范圍是什么

singleton和prototype的區別

  • 如果bean屬性設置為singleton時,當我們加載配置文件時對象已經被初始化

  • 而如果使用prototype時,對象的創建是我們什么時候獲取bean時什么時候創建對象

當設置為prototype時

SpringIOC容器中bean的作用范圍是什么
SpringIOC容器中bean的作用范圍是什么

當設置為singleton時

SpringIOC容器中bean的作用范圍是什么

bean對象的生命周期

單例對象:

  • 出生:當容器創建時對象出生

  • 活著:只有容器還在,對象一直活著

  • 死亡:容器銷戶,對象死亡

  • 單例對象和容器生命周期相同

測試:
先設置屬性init-method和destroy-method,同時在person類中寫入兩個方法進行輸出打印

 public void init(){
  System.out.println("初始化...");
 }

 public void destroy(){
  System.out.println("銷毀了...");
 }
<bean id="person" class="com.entity.Person" scope="singleton" init-method="init" destroy-method="destroy">
   
  </bean>

測試類:

@Test
 public void test(){
  //通過ClassPathXmlApplicationContext對象加載配置文件方式將javabean對象交給spring來管理
  ClassPathXmlApplicationContext Context=new ClassPathXmlApplicationContext("bean.xml");
//  //獲取Spring容器中的bean對象,通過id和類字節碼來獲取
  Person person = Context.getBean("person", Person.class);
  //銷毀容器
  Context.close();
 }

結果:

SpringIOC容器中bean的作用范圍是什么

總結:單例對象和容器生命周期相同

當屬性改為prototype多例時

  • 出生:當我們使用對象時spring框架為我們創建

  • 活著:對象只要是在使用過程中就一直活著

  • 死亡:當對象長時間不用,且沒有別的對象應用時,由java垃圾回收器回收對象

測試類:

@Test
 public void test(){
  //通過ClassPathXmlApplicationContext對象加載配置文件方式將javabean對象交給spring來管理
  ClassPathXmlApplicationContext Context=new ClassPathXmlApplicationContext("bean.xml");
//  //獲取Spring容器中的bean對象,通過id和類字節碼來獲取
  Person person = Context.getBean("person", Person.class);
  //銷毀容器
  Context.close();
 }

結果:

SpringIOC容器中bean的作用范圍是什么

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凯里市| 邯郸县| 吴川市| 建水县| 黄大仙区| 和政县| 白水县| 柳州市| 凌海市| 永清县| 惠州市| 辉南县| 津市市| 隆德县| 盱眙县| 南川市| 桐庐县| 通城县| 威宁| 吴江市| 蓬安县| 达尔| 藁城市| 台北市| 水富县| 温泉县| 乌兰县| 城固县| 内乡县| 西乌珠穆沁旗| 兴海县| 合作市| 临澧县| 包头市| 荣昌县| 建宁县| 社会| 罗山县| 元氏县| 如皋市| 宣汉县|