2017-03-06 57 views
0

也許我錯誤地解釋了這個問題。我的意思是說我想加載類路徑中可用的所有java配置文件,而不是applicationContext.xml。像這樣的東西 -基於java的配置中的Spring導入

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

} 
+2

'@ ImportResource' XML配置。請參閱http://stackoverflow.com/questions/15004674/spring-3-importresource-with-multiple-files – dnault

回答

1

嘗試@ImportResource註釋導入基於Java配置

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

} 
+0

感謝您的回覆。也許我錯誤地說了這個問題 –

相關問題