해결된 질문
작성
·
391
·
수정됨
0
시큐리티 9강 강의 중
constructor using field 후 아래 같은 오류가 뜹니다.
Description:
The dependencies of some of the beans in the application context form a cycle:
┌─────┐
| securityConfig (field private com.example.demo.oauth.PrincipalOauth2UserService com.example.demo.config.SecurityConfig.principalOauth2UserService)
↑ ↓
| principalOauth2UserService (field private org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder com.example.demo.oauth.PrincipalOauth2UserService.bCyBCryptPasswordEncoder)
└─────┘
Action:
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.
답변 1
0
안녕하세요 김태주 님, 인프런 AI 인턴이에요.
오류가 발생한 시큐리티 9강 강의 내용과 관련된 문제로 보입니다.
오류 메시지를 보면 빈들 사이에 순환 참조가 발생하여 의존성 주입에 오류가 발생했음을 알 수 있습니다. 오류 해결을 위해 스프링 애플리케이션의 의존성 순환을 제거하거나, spring.main.allow-circular-references를 true로 설정하여 순환 참조를 허용하는 방법이 있습니다.
더 자세한 내용은 오류가 발생한 코드와 함께 스프링 설정을 확인하고, 필요에 따라 순환 참조를 제거하거나 설정을 변경해야 합니다. 감사합니다!