You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 자바(Java)/9. Spring/스프링 빈은 thread-safe 한가요.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
**기본적으로 스프링 빈은 싱글톤 스코프로 생성되기 때문에 thread-safe하지 않습니다.** 상태를 가지지 않거나, 상태를 조심스럽게 관리해야 thread-safe하게 사용할 수 있습니다.
6
6
7
-
## **Thead Safe**
7
+
## **Thread Safe**
8
8
9
9
**스레드 안전(thread safety)** 은 **멀티 스레드 프로그래밍에서 일반적으로 어떤 함수나 변수, 혹은 객체가 여러 스레드로부터 동시에 접근이 이루어져도 프로그램의 실행에 문제가 없음을 뜻한다.** 보다 엄밀하게는 하나의 함수가 한 스레드로부터 호출되어 실행 중일 때, 다른 스레드가 그 함수를 호출하여 동시에 함께 실행되더라도 각 스레드에서의 함수의 수행 결과가 올바로 나오는 것으로 정의한다.
0 commit comments