코드 그라데이션
프로토타입 스코프 - 싱글톤 빈과 함께 사용 시 문제점 본문
프로토타입 스코프 - 싱글톤 빈과 함께 사용시 문제점
스프링 컨테이너에 프로토타입 스코프의 빈을 요청하면 항상 새로운 객체 인스턴스를 생성해서 반환한다.
하지만 싱글톤 빈과 함께 사용할 때는 의도한 대로 잘 동작하지 않으므로 주의해야 한다.
그림과 코드로 먼저 보겠다.
먼저 스프링 컨테이너에 프로토타입 빈을 직접 요청하는 예제를 보자.
프로토타입 빈 직접 요청
스프링 컨테이너에 프로토타입 빈 직접 요청 1
스프링 컨테이너에 프로토타입 빈 직접 요청2
코드로 확인
SingletonWithPrototypeTest1 생성
package inflearn.spring_core.scope;
import org.junit.jupiter.api.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Scope;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import static org.assertj.core.api.Assertions.assertThat;
public class SingletonWithPrototypeTest1 {
@Test
void prototypeFind() {
// 빈을 관리하기 위한 Spring 애플리케이션 컨텍스트를 생성합니다.
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(PrototypeBean.class);
// 컨텍스트에서 PrototypeBean의 첫 번째 인스턴스를 가져옵니다.
PrototypeBean prototypeBean1 = ac.getBean(PrototypeBean.class);
prototypeBean1.addCount();
// 첫 번째 인스턴스의 카운트가 1인지 확인합니다.
assertThat(prototypeBean1.getCount()).isEqualTo(1);
// 컨텍스트에서 PrototypeBean의 두 번째 인스턴스를 가져옵니다.
PrototypeBean prototypeBean2 = ac.getBean(PrototypeBean.class);
prototypeBean2.addCount();
// 두 번째 인스턴스의 카운트가 1인지 확인합니다.
assertThat(prototypeBean2.getCount()).isEqualTo(1);
}
// "prototype"으로 사용자 정의 범위인 PrototypeBean을 정의합니다.
@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
싱글톤에서 프로토타입 빈 사용 2
싱글톤에서 프로토타입 빈 사용 3
Tip : ctrl alt N => 리턴 합치기
테스트 코드
package inflearn.spring_core.scope;
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 javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import static org.assertj.core.api.Assertions.assertThat;
public class SingletonWithPrototypeTest1 {
@Test
void prototypeFind() {
// 빈을 관리하기 위한 Spring 애플리케이션 컨텍스트를 생성합니다.
AnnotationConfigApplicationContext ac
= new AnnotationConfigApplicationContext(ClientBean.class, PrototypeBean.class);
// 컨텍스트에서 PrototypeBean의 첫 번째 인스턴스를 가져옵니다.
PrototypeBean prototypeBean1 = ac.getBean(PrototypeBean.class);
prototypeBean1.addCount();
// 첫 번째 인스턴스의 카운트가 1인지 확인합니다.
assertThat(prototypeBean1.getCount()).isEqualTo(1);
// 컨텍스트에서 PrototypeBean의 두 번째 인스턴스를 가져옵니다.
PrototypeBean prototypeBean2 = ac.getBean(PrototypeBean.class);
prototypeBean2.addCount();
// 두 번째 인스턴스의 카운트가 1인지 확인합니다.
assertThat(prototypeBean2.getCount()).isEqualTo(1);
}
@Scope("singleton")
static class ClientBean { // 추가
private final PrototypeBean prototypeBean;
@Autowired
public ClientBean(PrototypeBean prototypeBean) {
this.prototypeBean = prototypeBean;
}
public int logic() {
prototypeBean.addCount();
int count = prototypeBean.getCount();
return count;
}
}
// "prototype"으로 사용자 정의 범위인 PrototypeBean을 정의합니다.
@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");
}
}
}
부연
스프링은 일반적으로 싱글톤 빈을 사용하므로, 싱글톤 빈이 프로토타입 빈을 사용하게 된다.
그런데 싱글톤 빈은 생성 시점에만 의존관계 주입을 받기 때문에,
프로토타입 빈이 새로 생성되기는 하지만
싱글톤 빈과 함께 계속 유지되는 것이 문제다.
원하는 것이 이런 것은 아니다.
프로토타입 빈을 주입 시점에만 새로 생성하는게 아니라, 사용할 때 마다 새로 생성해서 사용하는 것을 원할 것이다.
728x90
'Spring > 핵심 원리 구현' 카테고리의 다른 글
웹 스코프 (0) | 2024.02.16 |
---|---|
프로토타입 스코프 - 싱글톤 빈과 함께 사용시 Provider로 문제 해결 (0) | 2024.02.15 |
프로토타입 스코프 (0) | 2024.02.14 |
빈 스코프란? (0) | 2024.02.13 |
[중간점검] 객체의 생성과 객체의 초기화 분리 (0) | 2024.02.12 |
Comments