해결된 질문
작성
·
106
0
public class PrototypeTest {
@Test
void PrototypeBeanTest() {
AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(PrototypeBean.class);
System.out.println("find PrototypeBean1");
PrototypeBean prototypeBean1 = ac.getBean(PrototypeBean.class);
System.out.println("find PrototypeBean2");
PrototypeBean prototypeBean2 = ac.getBean(PrototypeBean.class);
System.out.println("prototypeBean1 = " + prototypeBean1);
System.out.println("prototypeBean2 = " + prototypeBean2);
assertThat(prototypeBean1).isNotSameAs(prototypeBean2);
}
static class PrototypeBean {
@PostConstruct
public void init() {
System.out.println("PrototypeBean.init");
}
@PreDestroy
public void destroy() {
System.out.println("PrototypeBean.destroy");
}
}
}
결과
prototypeBean1 = hello.core.scope.PrototypeTest$PrototypeBean@29caf222
prototypeBean2 = hello.core.scope.PrototypeTest$PrototypeBean@29caf222
강의에서 프로토타입 스코프를 코드로 작성하고 실행하는 도중 깜빡하고 스코프 애노테이션을 넣는 걸 깜빡했습니다.
그런데 prototypeBean1 과 prototypeBean2 의 참조값이 같게 나왔습니다.
@Configuration을 적지 않았는데 왜 싱글톤이 적용이 된 건지 잘 이해가 가지 않습니다...
답변 1
1
PrototypeBean.class의 정보를 넘겨주는데 PrototypeBean 클래스에 @Configuration을 적지 않으면 싱글톤이 적용이 안되는 거 아닌가요??ㅠㅠ
이 부분은 @Configuration 애노테이션과 별개로 AnnotationConfigApplicationContext를 생성할 때 발생하는 내부 동작에 의해 빈이 등록됩니다. AnnotationConfigApplicationContext를 생성할 때 생성자의 파라미터로 넘어가는 클래스는 모두 빈으로 등록된다고 이해하시면 됩니다. 특별한 케이스라고 이해하시면 좋을 것 같습니다.
PrototypeBean.class의 정보를 넘겨주는데 PrototypeBean 클래스에 @Configuration을 적지 않으면 싱글톤이 적용이 안되는 거 아닌가요??ㅠㅠ