[Spring Boot] The dependencies of some of the beans in the application context form a cycle 에러 해결

Chae Eun Kim·2023년 3월 16일
0

spring boot

목록 보기
2/5

  • 에러 원인 : 위와같은 참조 사이클이 발생한 이유는 내가 ImageService 인터페이스로 구현한 ImageServiceImpl 서비스 코드 내에서 private final ImageService imageService; 로 imageService를 참조하려고 해서 그런 것임. 자기가 자기 자신을 참조하려해서 에러가 난것임. 바보같은 실수였다.


  • 해결 : private final ImageService imageService; 없애고 메소드 바로 사용함.

0개의 댓글