1. ComponentScan

- @SpringBootApplication 어노테이션을 살펴보면 안에 @ComponentScan 어노테이션이 정의되어 있다.
- 그렇기 때문에 해당 어노테이션이 있는 위치부터 모든 컴포넌트를 탐색한다. (해당 클래스가 존재하는 패키지(me.hyunki.demospring51) 까지만 컴포넌트 스캔을 함)
- Autowired가 잘되지 않을 경우에는 ComponentScan의 범위를 잘 따져봐야 한다.
- @Filter : 스캔하는 중에 걸러내주는 설정
2.펑션을 사용한 빈 등록
public static void main(String[] args) {
new SpringApplicationBuilder()
.sources(Demospring51Application.class)
.initializers((ApplicationContextInitializer< GenericApplicationContext >)
applicationContext -> {
applicationContext.registerBean(MyBean.class);
})
.run(args);
}
- @ComponentScan을 사용하는거에 비해 어플리케이션 구동시간이 단축되는 성능상의 이점이 있다
- 하지만, 어플리케이션 한번 구동되는데 걸리는 시간의 단축이 큰 의미가 있을지 모르겠음.
- @ComponentScan 범위 밖의 빈을 Scan할 수 있는 장점이 있다.
- 단지 어플리케이션 구동 시간이라는 성능상의 이점 때문에 @ComponentScan을 버릴 만큼 큰 이점은 아닐것으로 생각된다.
3. 컴포넌트 스캔 주요 기능
- 스캔 위치 설정
- 필터 : 어떤 어노테이션을 스캔 할지 또는 안할지 (@Filter)
4. @Component (컴포넌트 스캔이 되는 대상들)
- @Repository
- @Service
- @Controller
- @Configuration
5. 동작원리
- @ComponentScan은 스캔할 패키지와 어노테이션에 대한 정보
- 실제 스캐닝은 ConfigurationClassPostProcessor라는 BeanFactoryPostProcessor에 의해 처리됨.