Prototype Scope: 1개의 글
[Spring] 빈의 Scope - 싱글톤과 프로토타입
[Spring] 빈의 Scope - 싱글톤과 프로토타입 빈을 등록할 때 아무런 설정을 하지 않으면 기본적으로 빈은 싱글톤 scope을 갖는다. 싱글톤 scope이란 어플리케이션 전반에 걸쳐 해당 빈의 인스턴스를 오직 하나만 생성해서 사용하는 것이다. 1. Singleton Scope Single, Proto 클래스를 새로 만들고 @Component를 붙여 빈으로 등록한다. Single.java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class Single { @Autowired private Proto proto;..
Spring Framework/Spring Core
2021. 4. 21. 01:57