728x90
반응형
사전 지식
@Bean
특징
- @Bean이 붙은 메서드는 싱글톤이므로 여러번 호출되어도 동일한(하나의) 객체만 return된다고 알고있지만, @Configuration 클래스 내부에서 지정된 @Bean 메서드에만 한정되는 이야기이다. @Configuration 메서드 내부에 있지 않은 @Bean 메서드는 싱글톤을 보장받을 수 없다.
싱글톤 보장 원리
- CBLIB(바이트 코드 조작 라이브러리)를 이용하여, @Configuration이 붙은 클래스를 상속한 임의의 클래스를 만들고 그 임의의 클래스를 빈으로 등록한다. 그렇게 빈으로 등록된 클래스 내부의 @Bean 메서드들은 Spring Container에 존재한다면 Spring Container에 존재하는 빈을 반환하고, 없다면 새로 생성하여 빈으로 등록 후 반환함으로서 싱글톤을 보장받는다.
- 실제로 @Configuration에 의해 Bean으로 등록된 securityConfig는 다음과 같이 SecurityConfig를 상속받은 프록시 객체가 등록된다. com.platinouss.bookrecommend.config.SecurityConfig$$EnhancerBySpringCGLIB$$895b06d2
에러 코드
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'lostFoundBoardImageServiceImpl' defined in file [/Users/jimin/Documents/GitHub/tovalley/tovalley-server/out/production/classes/kr/ac/kumoh/illdang100/tovalley/service/lost_found_board/LostFoundBoardImageServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 2; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'lostFoundBoardServiceImpl' defined in file [/Users/jimin/Documents/GitHub/tovalley/tovalley-server/out/production/classes/kr/ac/kumoh/illdang100/tovalley/service/lost_found_board/LostFoundBoardServiceImpl.class]: Unsatisfied dependency expressed through constructor parameter 5; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'lostFoundBoardImageServiceImpl': Requested bean is currently in creation: Is there an unresolvable circular reference? |
- class a → class b 의존
- class b → class a 의존
- ⇒ a ↔ b 순환 의존성 발생
해결 방법
class b에서 a 의존성이 필수가 아니라고 판단하여 의존성 제거함
728x90
반응형
댓글