Error

[Error][SPRING]Relying upon circular references is discouraged and they are prohibited by default.

오선지♬ 2024. 1. 30. 19:01
728x90
반응형

https://escapefromcoding.tistory.com/827

 

스프링 AOP (3) - 실무 주의사항

프록시 내부호출 문제 스프링은 프록시 방식의 AOP를 사용합니다. 따라서 AOP를 적용하려면 항상 프록시를 통해서 대상객체(Target)을 호출해야 합니다. 그래야 어드바이를 통해서 정상적으로 호출

escapefromcoding.tistory.com

 

message

Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.

 

번역

순환 참조에 의존하는 것은 권장되지 않으며 기본적으로 금지됩니다. Bean 간의 종속성 순환을 제거하려면 애플리케이션을 업데이트하세요. 최후의 수단으로 spring.main.allow-circular-references를 true로 설정하여 자동으로 순환을 중단할 수 있습니다.


 

 

728x90
반응형