본문 바로가기
Spring

[스프링 핵심 원리 - 기본편] 컴포넌트 스캔과 의존관계 자동 주입 시작하기

by 박성민 2021. 9. 19.
  • 스프링 빈을 자바 코드나 XML 등을 통해서 설정 정보에 직접 등록할 경우 등록해야 할 스프링 빈이 수십, 수백개가 되면 일일이 등록하기도 귀찮고, 설정 정보도 커지고, 누락하는 문제도 발생합니다.
  • 그래서 스프링은 설정 정보가 없어도 자동으로 스프링 빈을 등록하는 컴포넌트 스캔이라는 기능을 제공합니다.
  • 또 의존관계도 자동으로 주입하는 @Autowired라는 기능도 제공합니다.

AutoAppConfig.java

@Configuration
@ComponentScan(
        excludeFilters = @Filter(type = FilterType.ANNOTATION, classes = Configuration.class)
)
public class AutoAppConfig {
}
  • 컴포넌트 스캔을 사용하려면 먼저 @ComponentScan을 설정 정보에 붙여주면 됩니다.
  • 기존의 AppConfig와는 다르게 @Bean으로 등록한 클래스가 하나도 없습니다.

참고: excludeFilters를 이용해서 컴포넌트 스캔 대상에서 제외할 수 있습니다.

컴포넌트 스캔은 이름 그대로 @Component 애노테이션이 붙은 클래스를 스캔해서 스프링 빈으로 등록합니다.

참고: @Configuration도 소스코드를 열어보면 @Component 애노테이션이 붙어있습니다.

@Component, @Autowired 추가

@Component
public class MemoryMemberRepository implements MemberRepository {

    ...

}
@Component
public class RateDiscountPolicy implements DiscountPolicy {

    ...

}
@Component
public class MemberServiceImpl implements MemberService {

    private final MemberRepository memberRepository;

    @Autowired
    public MemberServiceImpl(MemberRepository memberRepository) {
        this.memberRepository = memberRepository;
    }

    ...

}
@Component
public class OrderServiceImpl implements OrderService {

    private final MemberRepository memberRepository;
    private final DiscountPolicy discountPolicy;

    @Autowired
    public OrderServiceImpl(MemberRepository memberRepository, DiscountPolicy discountPolicy) {
        this.memberRepository = memberRepository;
        this.discountPolicy = discountPolicy;
    }

    ...

}
  • 이전에 AppConfig에서는 @Bean으로 직접 설정 정보를 작성했고, 의존관계도 직접 명시했습니다. 이제는 이런 설정 정보 자체가 없기 때문에, 의존관계 주입도 이 클래스 안에서 해결해야 합니다.
  • @Autowired는 의존관계를 자동으로 주입해줍니다.
  • @Autowired를 사용하면 생성자에서 여러 의존관계도 한번에 주입받을 수 있습니다.

AutoAppConfigTest.java

public class AutoAppConfigTest {

    @Test
    void basicScan() {
        AnnotationConfigApplicationContext ac = new AnnotationConfigApplicationContext(AutoAppConfig.class);

        MemberService memberService = ac.getBean(MemberService.class);
        assertThat(memberService).isInstanceOf(MemberService.class);
    }

}
  • AnnotationConfigApplicationContext를 사용하는 것은 기존과 동일합니다.

로그를 잘 보면 컴포넌트 스캔이 잘 동작하는 것을 확인할 수 있습니다.

ClassPathBeanDefinitionScanner - Identified candidate component class:
.. RateDiscountPolicy.class
.. MemberServiceImpl.class
.. MemoryMemberRepository.class
.. OrderServiceImpl.class

컴포넌트 스캔과 자동 의존관계 주입 동작 방식

1. @ComponentScan

1

  • @ComponentScan@Component가 붙은 모든 클래스를 스프링 빈으로 등록합니다.
  • 이때 스프링 빈의 기본 이름은 클래스명을 사용하되 맨 앞글자만 소문자를 사용합니다.
    • 빈 이름 기본 전략: MemberServiceImpl 클래스 -> memberServiceImpl
    • 빈 이름 직접 지정: 만약 스프링 빈의 이름을 직접 지정하고 싶으면 @Component("memberService2") 이런식으로 이름을 부여하면 됩니다.

2. @Autowired 의존관계 자동 주입

2

  • 생성자에 @Autowired를 지정하면, 스프링 컨테이너가 자동으로 해당 스프링 빈을 찾아서 주입합니다.
  • 이때 기본 조회 전략은 타입이 같은 빈을 찾아서 주입합니다.
    • getBean(MemberRepository.class)와 동일하다고 이해하면 됩니다.

3

  • 생성자에 파라미터가 많아도 다 찾아서 자동으로 주입합니다.

참조

댓글