Component-scan 지원 버전
- XML : Spring 2.5 이상 - 어노테이션 : Spring 3.1 이상 (http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/context/annotation/ComponentScan.html)
Component-scan의 기능
- 일일이 XML에 Bean으로 설정하지 않고도 선언된 클래스 위에 @Controller, @Service, @Repository, @Component가 있으면 자동으로 scan하여 Bean으로 생성
선언 방법
- XML context:component-scan base-package="com.taky.spring"
'Java > Spring' 카테고리의 다른 글
SpringBoot Profile(환경별 설정 파일 구별) (0) | 2016.06.07 |
---|---|
SpringBoot JSP를 Jar에 넣기 (0) | 2016.06.01 |
SpringBoot JSP View 설정하기 (1) | 2016.05.30 |
[Bean] init-method, lazy-init, destroy는 무엇일까? (0) | 2016.04.11 |
[SSL] Spring Boot를 이용해 HTTPS 연동하기 (개인 서명) (1) | 2016.02.23 |