23.03.17 23:44 작성
·
2K
0
@Scope("singleton")
static class ClientBean{
@Autowired
private Provider<PrototypeBean> provider;
public int logic() {
PrototypeBean prototypeBean = provider.get();
prototypeBean.addCount();
int count = prototypeBean.getCount();
return count;
}
}
위에 코드 @Autowired 에 빨간줄이 생기면서
Inspection 'Incorrect autowiring in Spring bean components' options 오류 메시지가 뜨네요
그런데 테스트 실행은 정상작동 되던데 뭐가 문제인가요?
2023. 03. 18. 21:51
감사합니당