Spring 的 Controller 是單例還是多例?怎么保證并發(fā)的安全?

來(lái)源 | http://blog.csdn.net/riemann_/article/details/97698560
答案 得到的不同的值,這是線程不安全的 解決方案 補(bǔ)充說(shuō)明
答案
controller默認(rèn)是單例的,不要使用非靜態(tài)的成員變量,否則會(huì)發(fā)生數(shù)據(jù)邏輯混亂。正因?yàn)閱卫圆皇蔷€程安全的。
我們下面來(lái)簡(jiǎn)單的驗(yàn)證下:
package?com.riemann.springbootdemo.controller;
import?org.springframework.context.annotation.Scope;
import?org.springframework.stereotype.Controller;
import?org.springframework.web.bind.annotation.RequestMapping;
/**
?*?@author?riemann
?*?@date?2019/07/29?22:56
?*/
@Controller
public?class?ScopeTestController?{
????private?int?num?=?0;
????@RequestMapping("/testScope")
????public?void?testScope()?{
????????System.out.println(++num);
????}
????@RequestMapping("/testScope2")
????public?void?testScope2()?{
????????System.out.println(++num);
????}
}
我們首先訪問(wèn) http://localhost:8080/testScope,得到的答案是1;
然后我們?cè)僭L問(wèn) http://localhost:8080/testScope2,得到的答案是 2。
得到的不同的值,這是線程不安全的
接下來(lái)我們?cè)賮?lái)給controller增加作用多例 @Scope("prototype")
package?com.riemann.springbootdemo.controller;
import?org.springframework.context.annotation.Scope;
import?org.springframework.stereotype.Controller;
import?org.springframework.web.bind.annotation.RequestMapping;
/**
?*?@author?riemann
?*?@date?2019/07/29?22:56
?*/
@Controller
@Scope("prototype")
public?class?ScopeTestController?{
????private?int?num?=?0;
????@RequestMapping("/testScope")
????public?void?testScope()?{
????????System.out.println(++num);
????}
????@RequestMapping("/testScope2")
????public?void?testScope2()?{
????????System.out.println(++num);
????}
}
我們依舊首先訪問(wèn) http://localhost:8080/testScope,得到的答案是1;
然后我們?cè)僭L問(wèn) http://localhost:8080/testScope2,得到的答案還是 1。
相信大家不難發(fā)現(xiàn) :
單例是不安全的,會(huì)導(dǎo)致屬性重復(fù)使用。
解決方案
不要在controller中定義成員變量。 萬(wàn)一必須要定義一個(gè)非靜態(tài)成員變量時(shí)候,則通過(guò)注解@Scope(“prototype”),將其設(shè)置為多例模式。 在Controller中使用ThreadLocal變量
補(bǔ)充說(shuō)明
spring bean作用域有以下5個(gè):
singleton: 單例模式,當(dāng)spring創(chuàng)建applicationContext容器的時(shí)候,spring會(huì)欲初始化所有的該作用域?qū)嵗?,加上lazy-init就可以避免預(yù)處理; prototype:原型模式,每次通過(guò)getBean獲取該bean就會(huì)新產(chǎn)生一個(gè)實(shí)例,創(chuàng)建后spring將不再對(duì)其管理;
(下面是在web項(xiàng)目下才用到的)
request:搞web的大家都應(yīng)該明白request的域了吧,就是每次請(qǐng)求都新產(chǎn)生一個(gè)實(shí)例,和prototype不同就是創(chuàng)建后,接下來(lái)的管理,spring依然在監(jiān)聽(tīng); session: 每次會(huì)話,同上; global session: 全局的web域,類似于servlet中的application。
END
有熱門推薦?
2.?Elasticsearch 查詢數(shù)據(jù)的工作原理是什么?
3.?Spring Boot 集成 Sharding-JDBC + Mybatis-Plus 實(shí)現(xiàn)分庫(kù)分表
最近面試BAT,整理一份面試資料《Java面試BATJ通關(guān)手冊(cè)》,覆蓋了Java核心技術(shù)、JVM、Java并發(fā)、SSM、微服務(wù)、數(shù)據(jù)庫(kù)、數(shù)據(jù)結(jié)構(gòu)等等。
獲取方式:點(diǎn)“在看”,關(guān)注公眾號(hào)并回復(fù)?Java?領(lǐng)取,更多內(nèi)容陸續(xù)奉上。
文章有幫助的話,在看,轉(zhuǎn)發(fā)吧。
謝謝支持喲 (*^__^*)

