컴포넌트 스캔에서 같은 빈 이름을 등록하면 어떻게 될까?
다음 두 가지 상황이 있다.
- 자동 빈 등록 vs 자동 빈 등록
- 수동 빈 등록 vs 자동 빈 등록
자동 빈 등록 vs 자동 빈 등록
- 컴포넌트 스캔에 의해 자동으로 스프링 빈이 등록되는데, 그 이름이 같은 경우 스프링은 오류를 발생시킨다.
- ConflictingBeanDefinitionException 예외 발생
MemberServiceImpl의 컴포넌트를 service로 등록하고
OrderServiceImpl의 컴포넌트를 service로 등록하면
AutoAppConfigTest.java에서 테스트를 실행하면
service로 정의된 빈들이 서로 충돌이 났다는 에러 메시지이다.
수동 빈 등록 vs 자동 빈 등록
만약 수동 빈 등록과 자동 빈 등록에서 빈 이름이 충돌되면 어떻게 될까?
MemoryMemberRepository.java
@Component
public class MemoryMemberRepository implements MemberRepository {}
AutoAppConfig.java
@Configuration
@ComponentScan(
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class)
)
public class AutoAppConfig {
@Bean(name = "memoryMemberRepository")
public MemberRepository memberRepository() {
return new MemoryMemberRepository();
}
}
이 경우 수동 빈 등록이 우선원을 가진다.
(수동 빈이 자동 빈을 오버라이딩 해버린다.)
"수동 빈 등록시 남는 로그"
Overriding bean definition for bean 'memoryMemberRepository' with a different definition: replacing [Generic bean: class [hello.core.member.MemoryMemberRepository]; scope=singleton; abstract=false; lazyInit=null; autowireMode=0; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=null; factoryMethodName=null; initMethodName=null; destroyMethodName=null; defined in file [C:\DEV\SpringBoot\core\out\production\classes\hello\core\member\MemoryMemberRepository.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=null; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=autoAppConfig; factoryMethodName=memberRepository; initMethodName=null; destroyMethodName=(inferred); defined in hello.core.AutoAppConfig]
물론 개발자가 의도적으로 이런 결과를 기대했다면, 자동보다는 수동이 우선권을 가지는 것이 좋다. 하지만 현실은 개발자가 의도적으로 설정해서 이런 결과가 만들어지기 보다는 여러 설정들이 꼬여서 이런 결과가 만들어지는 경우가 대부분이다!
"그러면 정말 잡기 어려운 버그가 만들어진다. 항상 잡기 어려운 버그는 애매한 버그다"
그래서 최근 스프링 부트에서는 수동 빈 등록과 자동 빈 등록이 충돌나면 오류가 발생하도록 기본 값을 바꾸었다.
"수동 빈 등록, 자동 빈 등록 오류 시 스프링 부트 에러"
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
스프링 부트인 'CoreApplicationi'을 실행해보면 오류를 볼 수 있다.
위의 오류를 막으려면
application.properties에서
spring.main.allow-bean-definition-overriding=true
true 로 설정하면 오류가 나지 않는다.
스프링 부트는 기본적으로 false로 설정되어있다.
'스프링 > 핵심 원리' 카테고리의 다른 글
[Spring] 옵션 처리 (0) | 2022.02.18 |
---|---|
[Spring] 다양한 의존관계 주입 방법 (0) | 2022.02.18 |
[Spring] 필터 (0) | 2022.02.17 |
[Spring] 탐색 위치와 기본 스캔 대상 (0) | 2022.02.17 |
[Spring] 컴포넌트 스캔과 의존관계 자동 주입 시작하기 (0) | 2022.02.17 |
댓글