中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Spring的Controller是怎么保證并發的安全

發布時間:2021-12-02 16:19:45 來源:億速云 閱讀:204 作者:柒染 欄目:云計算

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。

相信大家不難發現:

?  

單例是不安全的,會導致屬性重復使用。

?  
 

解決方案

  • 不要在 Controller 中定義成員變量。
  • 萬一必須要定義一個非靜態成員變量時候,則通過注解 @Scope(“prototype”),將其設置為多例模式。
  • 在 Controller 中使用 ThreadLocal 變量
 

補充說明

spring bean 作用域有以下 5 個:

  • singleton: 單例模式,當 spring 創建 applicationContext 容器的時候,spring 會欲初始化所有的該作用域實例,加上 lazy-init 就可以避免預處理;
  • prototype:原型模式,每次通過getBean獲取該bean就會新產生一個實例,創建后spring將不再對其管理;

(下面是在web項目下才用到的)

  • request:搞 web 的大家都應該明白 request 的域了吧,就是每次請求都新產生一個實例,和 prototype 不同就是創建后,接下來的管理,spring 依然在監聽;
  • session: 每次會話,同上;
  • global session: 全局的 web 域,類似于 servlet 中的 application。

關于Spring的Controller是怎么保證并發的安全問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

新邵县| 铅山县| 安岳县| 漳浦县| 安阳市| 宁远县| 东辽县| 镇坪县| 塔河县| 碌曲县| 黔江区| 镶黄旗| 宜良县| 资阳市| 平凉市| 舟曲县| 师宗县| 丽水市| 娱乐| 土默特左旗| 丹阳市| 喀喇沁旗| 赤城县| 万盛区| 临汾市| 商水县| 山西省| 宜宾市| 南通市| 临武县| 久治县| 济阳县| 威远县| 林周县| 祁连县| 武安市| 潜山县| 赣榆县| 安陆市| 龙泉市| 宿迁市|