Error Code
- 애플리케이션 컨텍스트에서 일부 Bean의 종속성이 순환주기를 형성하는 문제가 발생
- 순환 종속성 또는 순환 참조 문제는 둘 이상의 Bean이 생성자를 통해 서로를 주입하려고할 때 발생
해결 방안
// @Around("execution(* com.danny.learningspring..*(..))")
@Around("execution(* com.danny.learningspring..*(..)) && !target(com.danny.learningspring.SpringConfig)")
- AOP가 실행될 때, SpringConfig에서 중복으로 Been을 생성하고 있기때문에 !target으로 제외시킴
'Error' 카테고리의 다른 글
APPLICATION FAILED TO START (0) | 2022.12.07 |
---|---|
Mac) 터미널 Git 충돌(Automatic merge failed; fix conflicts and then commit the result.) (0) | 2022.11.24 |
Mac) 터미널 Git config 인코딩 (0) | 2022.11.18 |
java: variable memberRepository not initialized in the default constructor (0) | 2022.11.11 |
long타입 0과 0L (0) | 2022.11.10 |
댓글