작성
·
753
1
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'hello.core.order.OrderServiceImpl' available
오류가 나온다면 AutoAppConfig에서
@ComponentScan(
basePackages = "hello.core.member", <- 이 부분을 지우면 된다!!
// memeber를 포함한 하위 패키지를 기준으로 찾기 때문에
// order에 대한 것 NoSuchDefiniton이 나오게된다.
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class) )