Code in Life
[springboot] The dependencies of some of the beans in the application context from a cycle: 본문
에러 및 이슈
[springboot] The dependencies of some of the beans in the application context from a cycle:
퓨끼 2020. 12. 25. 14:20
환경 : Windows10 Pro
에러 : The dependencies of some of the beans in the application context from a cycle:
원인 : bean 순환 참조 문제가 발생한것. (=A가 B를 참조중인데 B도 A를 참조중이고 그럼 어떤걸 먼저 생성해야해? 라는 상황)
임시방편으로 @RequiredArgsConstructor를 주석처리하고 직접 생성자를 만들어서 순환 참조가 일어나는 bean에 @Lazy 어노테이션을 통한 지연로딩으로 해결할 수 있었다.
참고
'에러 및 이슈' 카테고리의 다른 글
Comments