써치킴의 우당탕탕 개발 블로그

[Spring Framework] Bean Scan 본문

Spring Framework

[Spring Framework] Bean Scan

써치킴 2022. 5. 16. 02:48
  • <context:component-scan base-package="com.allim.*..*.web">
    • 일일이 빈등록 x, com.allim.*..*.web 경로를 포함한 모든 하위경로에 적용
    • Annotation 적용한 자바파일들이 빈으로 등록됨
  • <context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/>
    • @Service가 포함된 annotation 로딩
  • <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    • @Controller를 제외한 annotation만 로딩
Comments