스프링 빈 순환 참조 - The dependencies of some of the beans in the application context form a cycle
2021. 2. 11. 19:53ㆍSpring Boot
반응형
원래는 CartProvider까지 있었는데
The dependencies of some of the beans in the application context form a cycle
이같은 에러가 발생해 살펴보던중 CartProvider 를 사용하지 않음을 알게되었고 CartProvider를
삭제했더니 해결되었다.
3/12 추가
***************************
APPLICATION FAILED TO START
***************************
Description:
The dependencies of some of the beans in the application context form a cycle:
scrapYoutubeController defined in file [C:\Users\kimmj\OneDrive\문서\GitHub\RecipeServer\build\classes\java\main\com\recipe\app\src\scrapYoutube\ScrapYoutubeController.class]
┌─────┐
| scrapYoutubeProvider defined in file [C:\Users\kimmj\OneDrive\문서\GitHub\RecipeServer\build\classes\java\main\com\recipe\app\src\scrapYoutube\ScrapYoutubeProvider.class]
└─────┘
ScrapYoutubeProvider 에 생성자 정의하는 곳에 ScrapYoutubeProvider 를 정의했음 ->제거해주니 해결됨
@Lazy 붙여주면 해결되긴하는데 위처럼 해결하기 !
반응형
'Spring Boot' 카테고리의 다른 글
스프링부트 https 적용, http to https 리디렉션 적용 (0) | 2021.02.26 |
---|---|
@RequestMapping 과 @GetMapping 차이 (0) | 2021.02.11 |
스프링부트 서브쿼리 (0) | 2021.02.04 |
스프링부트 ec2에 배포하기 (0) | 2021.02.01 |
스프링부트와 AWS RDS 연동 (0) | 2021.01.30 |