基于java的配置中的Spring导入

时间:2017-03-06 18:10:27

标签: java spring configuration

也许我说错了这个问题。我的意思是说我想加载类路径中可用的所有java配置文件而不是applicationContext.xml。像这样的东西 -

@Configuration
@ImportResource("Some other configuration java files which might be in the dependant projects but in the same classpath")  
public class AppConfig {

}

1 个答案:

答案 0 :(得分:1)

尝试使用@ImportResource注释在基于java的配置中导入xml配置

@Configuration  
@ImportResource("classpath*:beancontext/applicationContext.xml")  
public class AppConfig {

}