작성
·
138
0
안녕하세요 김영한 선생님!
이번 수업과는 관련이 없을 수 있지만, 개인적인 궁금증이 생겨 질문드립니다.
DiscountService 클래스를 static inner class가 아닌 일반 inner class로 정의하고 테스트를 했을 때, 아래의 경고 메세지와 함께 UnsatisfiedDependencyException이 발생하는 것을 확인 하였습니다.
22:11:00.894 [main] WARN org.springframework.context.annotation.AnnotationConfigApplicationContext - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'allBeanTest.DiscountService': Unsatisfied dependency expressed through constructor parameter 0; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'hello.core.autowired.AllBeanTest' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
이 경우는 inner class가 outer class에도 접근할 수 있기 때문에 스프링 빈 순환참조가 일어나서 발생하는 에러라고 봐도 될까요?
답변 1
1
안녕하세요. 청록님
이 경우 static inner class가 아니면 스프링 빈을 생성할 수 없습니다.
inner class는 외부 객체의 인스턴스가 생성되어 있어야 만들 수 있는데, 스프링이 해당 외부 객체의 인스턴스를 정확하게 인식해서 빈을 성생할 수 없기 때문입니다. 반면에 static inner class는 외부 클래스의 타입만 알면 되기 때문에 스프링 빈을 생성할 수 있습니다.
더 자세한 내용은 자바 언어의 static inner class와 inner class의 차이를 학습해보시면 도움이 되실거에요^^
감사합니다.
확인해보니까 둘의 차이점을 명확히 알면 바로 알 수 있는 개념이었네요ㅠㅠ
친절하게 알려주셔서 감사합니다 선생님!