일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- http 메시지 컨버터
- 프록시
- 싱글톤
- java
- 다형성
- 테스트코드
- fielderror
- 코드트리조별과제
- @configuration
- 서블릿
- html form
- equals()
- HttpServletResponse
- 인터페이스
- 티스토리챌린지
- 스프링
- 김영한
- 백준
- 참조변수
- 코드트리
- DI
- objecterror
- 스프링컨테이너
- 오블완
- JSON
- 의존관계
- 오버라이딩
- ocp
- 추상클래스
- 코딩테스트
- Today
- Total
minOS
빈 스코프(3) - 프로토타입 스코프; 싱글톤 빈과 함께 사용시 문제점 본문
싱글톤 빈과 함께 사용시 문제점
스프링 컨테이너에 프로토타입 스코프의 빈을 요청하면 항상 새로운 객체 인스턴스를 생성하여 반환한다. 하지만 싱글톤 빈과 함께
사용할 때는 의도한대로 잘 동작하지 않으므로 주의해야한다.
스프링 컨테이너에서 프로토타입 빈만 사용
import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.Test; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Scope; public class SingletonWithPrototypeTest1 { @Test void prototypeFind(){ AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(PrototypeBean.class); PrototypeBean prototypeBean1 = ac.getBean(PrototypeBean.class); //클라이언트 A prototypeBean1.addCount(); Assertions.assertThat(prototypeBean1.getCount()).isEqualTo(1); PrototypeBean prototypeBean2 = ac.getBean(PrototypeBean.class); //클라이언트 B prototypeBean2.addCount(); Assertions.assertThat(prototypeBean2.getCount()).isEqualTo(1); } @Scope("prototype") static class PrototypeBean { private int count=0; public void addCount(){ count++; } public int getCount(){ return count; } @PostConstruct public void init(){ System.out.println("prototypeBean.init" + this); } @PreDestroy public void destroy(){ System.out.println("prototypeBean.destroy"); } } }
테스트 결과
싱글톤에서 프로토타입 빈 사용
import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Scope; import static org.assertj.core.api.Assertions.*; public class SingletonWithPrototypeTest1 { @Test void singletonClientUsePrototype(){ AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(PrototypeBean.class,ClientBean.class); ClientBean clientBean1 = ac.getBean(ClientBean.class); //클라이언트 A int count1 = clientBean1.logic(); assertThat(count1).isEqualTo(1); ClientBean clientBean2 = ac.getBean(ClientBean.class); //클라이언트 B int count2 = clientBean2.logic(); assertThat(count2).isEqualTo(2); } @Scope("singleton") static class ClientBean{ private final PrototypeBean prototypeBean; // 생성 시점에 주입 @Autowired public ClientBean(PrototypeBean prototypeBean){ this.prototypeBean = prototypeBean; } public int logic(){ prototypeBean.addCount(); return prototypeBean.getCount(); } } @Scope("prototype") static class PrototypeBean { private int count=0; public void addCount(){ count++; } public int getCount(){ return count; } @PostConstruct public void init(){ System.out.println("prototypeBean.init" + this); } @PreDestroy public void destroy(){ System.out.println("prototypeBean.destroy"); } } }
- ClientBean은 싱글톤이므로, 스프링 컨테이너 생성 시점에 함께 생성되고, 의존관계 주입도 발생한다.
1. ClientBean은 의존관계 자동 주입을 사용한다. 주입 시점에 스프링 컨테이너에 프로토타입 빈을 요청한다.
2. 스프링 컨테이너는 프로토타입 빈을 생성해서 ClientBean에 반환한다.
ClientBean은 프로토타입 빈을 내부 필드에 보관한다.(정확히는 참조값을 보관한다.)
- 클라이언트 A는 ClientBean을 스프링 컨테이너에 요청해서 받는다. 싱글톤이므로 항상 같은 ClientBean이 반환된다.
3. 클라이언트 A는 clientBean.logic()을 호출한다.
4. ClientBean은 prototypeBean의 addCount()를 호출해서 프로토타입 빈의 count를 증가한다. count 값이 1이 된다.
- 클라이언트 B는 ClientBean을 스프링 컨테이너에 요청해서 받는다. 싱글톤이므로 항상 같은 ClientBean이 반환된다.
여기서 중요한 점이 ClientBean이 내부에 가지고 있는 프로토타입 빈은 이미 과거에 주입이 끝난 빈이다. 주입 시점에
스프링 컨테이너에 요청해서 프로토타입 빈이 새로 생성된 것이지, 사용 할 때마다 새로 생성되는 것이 아니다.
5. 클라이언트 B는 clientBean.logic()을 호출한다.
6.ClientBean은 prototypeBean의 addCount()를 호출해서 프로토타입 빈의 count를 증가한다. count 값이 2가 된다.
정리
스프링은 일반적으로 싱글톤 빈을 사용하므로, 싱글톤 빈이 프로토타입 빈을 사용하게 된다. 그런데 싱글톤 빈은 생성 시점에만
의존관계를 주입 받기 때문에, 프로토타입 빈이 새로 생성되긴 하지만 싱글톤 빈과 함께 계속 유지되는 것이 문제이다.
의도한 바는 프로토타입 빈을 주입 시점에만 새로생성하는게 아니라, 사용할때 마다 새로 생성하는 것이다.
'TIL > 김영한의 스프링 핵심 원리' 카테고리의 다른 글
빈 스코프(5) - request 스코프 예제 만들기 (0) | 2024.05.27 |
---|---|
빈 스코프(4) - 프로토타입 스코프; 싱글톤 빈과 함께 사용시 Provider로 문제 해결 (0) | 2024.05.16 |
빈 스코프(2) - 프로토타입 스코프 (0) | 2024.05.09 |
빈 스코프(1) - 빈 스코프란 ? (0) | 2024.05.09 |
빈 생명주기 콜백(2)-빈 생명주기 콜백 지원방법 (0) | 2024.05.09 |