작성
·
409
1
학습하는 분들께 도움이 되고, 더 좋은 답변을 드릴 수 있도록 질문전에 다음을 꼭 확인해주세요.
1. 강의 내용과 관련된 질문을 남겨주세요.
2. 인프런의 질문 게시판과 자주 하는 질문(링크)을 먼저 확인해주세요.
(자주 하는 질문 링크: https://bit.ly/3fX6ygx)
3. 질문 잘하기 메뉴얼(링크)을 먼저 읽어주세요.
(질문 잘하기 메뉴얼 링크: https://bit.ly/2UfeqCG)
질문 시에는 위 내용은 삭제하고 다음 내용을 남겨주세요.
=========================================
[질문 템플릿]
1. 강의 내용과 관련된 질문인가요? (예/아니오)
2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? (예/아니오)
3. 질문 잘하기 메뉴얼을 읽어보셨나요? (예/아니오)
[질문 내용]
Appconfig파일과 AutoAppConfig 파일 2개가 있을때
CoreApplication을 실행하면
main
메서드가 실행됨: SpringApplication.run(CoreApplication.class, args);
가 호출되어 스프링 애플리케이션이 시작됩니다.
@SpringBootApplication
에서 @ComponentScan
이 실행됨: @SpringBootApplication
에는 내부적으로 @ComponentScan
이 포함되어 있습니다. 이 때, 기본 패키지를 기준으로 @Component
, @Service
, @Repository
, @Controller
등의 애노테이션이 붙은 클래스들을 스캔하고 빈으로 등록합니다.
AutoAppConfig
에는 @ComponentScan+ filter
가 있으므로 AppConfig
보다 AutoAppConfig
의 설정 정보를 먼저 적용함
AutoAppConfig
의 @ComponentScan
에는 excludeFilters
가 있어서 AppConfig
의 @Configuration
과 @Bean
들은 등록되지 않음
이렇게 이해를 하였는데
첫번째로 이순서가 맞는것인지 궁금하고,
두번째는 테스트 환경에서
package hello.core;
//import 생략
@SpringBootTest
class CoreApplicationTests {
@Test
public void contextLoads() {
}
}
이 테스트에서 오류가 발생하였는데
오류내용 : Parameter 0 of constructor in hello.core.Order.OrderServiceImpl required a single bean, but 2 were found:
- memoryMemberRepository: defined in file [hello\core\member\MemoryMemberRepository.class
- MemberRepository: defined by method 'MemberRepository' in class path resource [hello/core/AppConfig.class
오류내용은 Type에 따른 빈이 2개가 있다는것이었습니다.memberRepository, memoryMemberRepository같은 식으로
제가 AppConfig파일에서 @Bean처리를 한 memberRepository와
AutoAppConfig파일에서 @Component처리를한 구현체 memoryMemberRepository 또한 빈으로 등록이 되어있었습니다.
그래서 AppConfig의 @Bean을 모두 주석처리 해주었더니 오류는 없어졌습니다.
만약 제가 말씀드린 순서가 맞다면 filter처리된 Appconfig파일의 @configuration의 @bean들은 등록되지 않아야하는데 왜 filter처리가 안된것인지 궁금합니다.
아래는 import부분은 생략한autoappconfig와 appconfig파일입니다.
기본패키지도 같게하여서 따로 문제는 없는것같지만일단 올려보았습니다.
autoappconfig
package hello.core;
@Configuration
@ComponentScan(
excludeFilters = @Filter(type = FilterType.ANNOTATION, classes = Configuration.class)
)
public class AutoAppConfig {
}
appconfig (빈 주석처리 이후 오류 없어짐)
package hello.core;
@Configuration
public class AppConfig {
//@Bean
public MemberService memberService(){
return new MemberServiceImpl(MemberRepository());
}
//@Bean
public MemberRepository MemberRepository() {
return new MemoryMemberRepository();
}
//@Bean
public OrderService orderService()
{
return new OrderServiceImpl(MemberRepository(), DiscountPolicy());
}
//@Bean
public DiscountPolicy DiscountPolicy()
{
return new RateDiscountPolicy();
}
}
답변 1
-1
안녕하세요. 김시욱님, 공식 서포터즈 y2gcoder입니다.
도움을 드리고 싶지만 질문 내용만으로는 답변을 드리기 어렵습니다.
실제 동작하는 전체 프로젝트를 압축해서 구글 드라이브로 공유해서 링크를 남겨주세요.
구글 드라이브 업로드 방법은 다음을 참고해주세요.
주의: 업로드시 링크에 있는 권한 문제 꼭 확인해주세요
감사합니다.