스프링 빈 순환 참조 - The dependencies of some of the beans in the application context form a cycle

2021. 2. 11. 19:53Spring 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 붙여주면 해결되긴하는데 위처럼 해결하기 !

precioustar.tistory.com/66

반응형