通俗易懂spring之singleton和prototype
關於spring bean作用域,基於不同的容器,會有所不同,如BeanFactory和ApplicationContext容器就有所不同,在本篇文章,主要講解基於ApplicationContext容器的bean作用域。
關於bean的作用域,在spring中,主要包括singleton,prototype,session,request,global,本篇文章主要講解常用的兩種,即:singleton和prototype.
一 singleton
singleton為單例模式,即scope="singleton"的bean,在容器中,只例項化一次。
dao示例程式碼:
package com.demo.dao; public class UserDao { public UserDao(){ System.out.println("UserDao 無參建構函式被呼叫"); } //獲取使用者名稱 public String getUserName(){ //模擬dao層 return "Alan_beijing"; } }
applicationContext.xml
<?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 class="com.demo.dao.UserDao" id="userDao" scope="singleton"/> </beans>
test:
public class MyTest { @Test public void test(){ //定義容器並初始化 ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml"); //定義第一個物件 UserDao userDao = applicationContext.getBean(UserDao.class); System.out.println(userDao.getUserName()); //定義第二個物件 UserDao userDao2 = (UserDao) applicationContext.getBean("userDao"); System.out.println(userDao2.getUserName()); //比較兩個物件例項是否是同一個物件例項 System.out.println("第一個例項:"+userDao+"\n"+"第二個例項:"+userDao2); } }
測試結果:
分析:在測試程式碼中,將bean定義為singleton,並先後2次通過ApplicationContext的getBean()方法獲取bean(userDao),卻返回相同的例項物件:com.demo.dao.UserDao@27a5f880,仔細觀察,雖然獲取bean兩次,但是UserDao的無參建構函式卻只被呼叫一次,這也證明了在容器中,singleton實際只被例項化一次,需要注意的是,Singleton模式的bean,ApplicationContext載入bean時,就例項化了bean。
定義bean:
測試結果:
如下程式碼只是載入bean,卻沒呼叫getBean方法獲取bean,但UserDao卻被呼叫了一次,即例項化。
二 prototype
prototype即原型模式,呼叫多少次bean,就例項化多少次。
將singleton程式碼改為原型
<?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 class="com.demo.dao.UserDao" id="userDao" scope="prototype"/>
</beans>
測試程式碼與singleton一樣,但結果卻不一樣:
分析:通過測試結果,不難發現,呼叫兩次bean,就例項化兩次UserDao物件,且物件不一樣,需要注意的是,prototype型別的bean,只有在獲取bean時,才會例項化物件。
三 singleton和prototype區別
(1)singleton在容器中,只被例項化一次,而prototype在容器中,呼叫幾次,就被例項化幾次;
(2)在AppplicationContext容器中,singleton在applicaitonContext.xml載入時就被預先例項化,而prototype必須在呼叫時才例項化
singleton:
定義bean:
測試:
prototype:
定義bean:
測試:不呼叫
測試:呼叫
4.singleton比prototype消耗效能,在web開發中,推薦使用singleton模式,在app開發中,推薦使用prototype模式。
四 版權區
轉載部落格,必須註明部落格出處
部落格園:http://www.cnblogs.com/wangjiming/ (側重.NET)
CSDN:https://blog.csdn.net/u010228798 (側重JAVA)
如您有新想法,歡迎提出,郵箱:[email protected]
專業.NET之家技術QQ群:490539956
專業化Java之家QQ群:924412846
有問必答QQ群:2098469527
一對一技術輔導QQ:209846