[Spring] ProxyMode로 Prototype Scope Bean 사용해보기
01. Singleton Bean에 Prototype Bean 주입하기 Singleton Bean에 @Autowired로 주입 Singleton Bean에 Prototype Bean을 주입 하면 해당 Prototype Bean은 Singleton Bean 생성 후 주입 받는 시점에 생성되서 주입 되고 끝나기 때문에 Prototype scope가 아닌 Singleton scope 로 작동이 된다. 👉 주입받은 Prototype Bean의 Instance는 계속 동일 👉 ProxyMode로 사용해보자 02. ProxyMode를 사용하여 Prototype Bean 생성하기 Prototype Bean에 proxyMode = ScopedProxyMode.TARGET_CLASS 옵션 추가 03. Singleton ..