也许我说错了这个问题。我的意思是说我想加载类路径中可用的所有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 {
}
答案 0 :(得分:1)
尝试使用@ImportResource
注释在基于java的配置中导入xml配置
@Configuration
@ImportResource("classpath*:beancontext/applicationContext.xml")
public class AppConfig {
}