我正在tomcat webserver環境中運行一個war文件。如何僅在Spring中通過註釋配置組件掃描?
我有@Beans
註釋基於配置,以及web服務一個XML配置:
@Configuration
//@ComponentScan(basePackageClasses = ...)
public class AppConfig {
//beans @Bean
}
的applicationContext.xml:
<beans>
<context:component-scan base-package="..."/>
<jaxws:endpoint ... />
</bean>
問題:我想定義的註釋@ComponentScan
只有類型安全。但如果我這樣做,掃描不會執行。相反,當我使用<context:component-scan..
一切正常。
是Spring
組件掃描綁定到XML配置的web服務器的包掃描?
http://stackoverflow.com/questions/24130166/componentscan-basepackageclasses-vs-componentscan-basepackages-to-register-a-sin – Stefan