context:component-scan 에서 @Configuration
Spring2013. 10. 21. 18:47
root-context 설정에서
context-component scan 에서 자꾸 스프링 MVC 설정(@Configuration으로 되어있는)을 읽어가서.. 조금 살펴 보던 중에...
@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Component public @interface Configuration {}
위에껄 발견...OTL
@Configuration 이 @Component를 가지고 있어서...@Configuration은 스캔되는게 당연하다. 제외 하고 싶으면 exclude 로 빼면 된다.
별것도 아니었는데 -ㅅ-;;