기타

[이슈] 스프링 빈 순환 참조 (Error Msg: The dependencies of some of the beans in the application context form a cycle)

메성 2021. 10. 20. 14:48
반응형

스프링 빈을 참조하는데 A와 B가 서로 참조하는 경우 스프링 빈 순환 참조 문제가 발생할 수 있다.

***************************
APPLICATION FAILED TO START
***************************
Description:
The dependencies of some of the beans in the application context form a cycle:
┌─────┐
| userServiceImpl defined in URL [jar:file:/app.jar!/BOOT-INF/classes!/com/mesung/domain/service/impl/userServiceImpl.class]
↑     ↓
| orderServiceImpl (field private com.meusng.domain.service.userService com.meusng.domain.service.orderServiceImpl.userService)
└─────┘

위 로그처럼 userServiceImpl과 orderServiceImpl에서 서로 참조를 하게 되면, 스프링은 어떤 걸 먼저 생성해야 하는지 모르기 때문에 에러를 뱉어내게 된다.

그래서 임시방편으로 @RequiredArgsConstructor를 주석 처리 후 직접 생성자를 만들어서 순환 참조가 발생되는 빈(orderServiceImpl)에 @Lazy 어노테이션을 줌으로써 지연 로딩을 통해 해결할 수 있다.

public class OrderSerivceImpl implements OrderService {
    private final UserService userService;
  public UserServiceImpl(@Lazy UserService userService) {
    this.userService = userService;
}
반응형