亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

spring中bean屬于線程安全的嗎

發布時間:2020-11-09 11:37:32 來源:億速云 閱讀:299 作者:小新 欄目:編程語言

這篇文章主要介紹了spring中bean屬于線程安全的嗎,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

Spring 不保證 bean 的線程安全。

默認 spring 容器中的 bean 是單例的。當單例中存在競態條件,即有線程安全問題。如下面的例子

計數類

package constxiong.interview.threadsafe;
 
/**
 * 計數類
 * @author ConstXiong
 * @date 2019-07-16 14:35:40
 */
public class Counter {
 
	private int count = 0;
	
	public void addAndPrint() {
		try {
			Thread.sleep(10);
		} catch (InterruptedException e) {
			e.printStackTrace();
		}
		System.out.println(++count);
	}
}

spring 配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans.xsd
	    http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
        
	<bean id="counter" class="constxiong.interview.threadsafe.Counter" />
	
</beans>

測試類

package constxiong.interview.threadsafe;
 
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class CounterTest {
	
	public static void main(String[] args) {
		final ApplicationContext context = new ClassPathXmlApplicationContext("spring_safe.xml");
 
		for (int i = 0; i < 10; i++) {
			new Thread(){
				@Override
				public void run() {
					Counter counter = (Counter)context.getBean("counter");
					for (int j = 0; j < 1000; j++) {
						counter.addAndPrint();
					}
				}
			}.start();
		}
		
	}
	
}

打印結果開頭和結尾

1
5
7
4
2
6
3
8
9
.
.
.
9818
9819
9820
9821
9822
9823
9824
9825

期望打印出的最大值應該是 10000

修改 spring 配置文件,把 bean 的作用域改為 prototype

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans.xsd
	    http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
	<bean id="counter" class="constxiong.interview.threadsafe.Counter" scope="prototype"/>
</beans>

測試結果輸出10個 1000

spring中bean屬于線程安全的嗎即每個線程都創建了一個 Counter 對象,線程內獨自計數,不存在線程安全問題。但是不是我們想要的結果,打印出 10000。

所以 spring 管理的 bean 的線程安全跟 bean 的創建作用域和 bean 所在的使用環境是否存在競態條件有關,spring 并不能保證 bean 的線程安全。

感謝你能夠認真閱讀完這篇文章,希望小編分享spring中bean屬于線程安全的嗎內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

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

AI

乌兰浩特市| 永德县| 道孚县| 新源县| 秦皇岛市| 南京市| 大庆市| 沧州市| 科技| 阳东县| 沙河市| 凤山县| 永泰县| 宝鸡市| 岢岚县| 年辖:市辖区| 湛江市| 白山市| 新丰县| 宣汉县| 邯郸县| 乌兰察布市| 醴陵市| 惠州市| 云和县| 襄汾县| 余庆县| 汕头市| 壶关县| 阿图什市| 三河市| 石棉县| 成武县| 兴化市| 女性| 内乡县| 兴海县| 济源市| 大荔县| 阿巴嘎旗| 广南县|