> Java > java지도 시간 > Spring의 Bean은 스레드로부터 안전합니까?

Spring의 Bean은 스레드로부터 안전합니까?

(*-*)浩
풀어 주다: 2019-09-12 16:14:59
앞으로
3129명이 탐색했습니다.

봄의 콩은 스레드로부터 안전한가요?

Spring의 Bean은 스레드로부터 안전합니까?

Spring은 Bean의 스레드 안전성을 보장하지 않습니다.

스프링 컨테이너의 Bean은 기본적으로 싱글톤입니다. 싱글톤에 경쟁 조건이 있으면 스레드 안전 문제가 발생합니다. 아래 예시

Counting class

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>
로그인 후 복사

Test class

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#🎜🎜 #

스프링 구성 파일을 수정하고 Bean의 범위를 프로토타입으로 변경

<?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을 출력합니다

즉, 각 스레드 A Counter 개체가 생성되고 스레드 내에서 독립적으로 계산되므로 스레드 안전 문제가 없습니다. 그러나 이것은 우리가 원하는 결과가 아닙니다. 10000이 인쇄됩니다. Spring의 Bean은 스레드로부터 안전합니까?

그래서 Spring에서 관리하는 Bean의 스레드 안전성은 Bean의 생성 범위에 Race Condition이 있는지 여부와 관련이 있으며, Bean이 위치한 사용 환경은 Bean의 스레드 안전성을 보장할 수 없습니다. .

위 내용은 Spring의 Bean은 스레드로부터 안전합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:csdn.net
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿