您好,登錄后才能下訂單哦!
Spring的Controller是怎么保證并發的安全,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Controller 默認是單例的,不要使用非靜態的成員變量,否則會發生數據邏輯混亂。正因為單例所以不是線程安全的。
我們下面來簡單的驗證下:
package com.xttblog.springbootdemo.controller;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author 業余草,公眾號
*/
@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);
}
}
我們首先訪問 http://localhost:8080/testScope,得到的答案是1。
然后我們再訪問 http://localhost:8080/testScope2,得到的答案是 2。
得到的不同的值,這是線程不安全的。
接下來我們再來給controller增加作用多例 @Scope("prototype")。
package com.xttblog.springbootdemo.controller;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author 業余草,公眾號
*/
@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);
}
}
我們依舊首先訪問 http://localhost:8080/testScope,得到的答案是 1。
然后我們再訪問 http://localhost:8080/testScope2,得到的答案還是 1。
相信大家不難發現:
?單例是不安全的,會導致屬性重復使用。
?
spring bean 作用域有以下 5 個:
(下面是在web項目下才用到的)
關于Spring的Controller是怎么保證并發的安全問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。