0
我想在spring bean中導入xml資源文件,所以我該怎麼做呢?我已經嘗試了下面的代碼,但它不工作。在spring bean中導入資源
<beans profile="en_US">
<import resource="Test.xml" />
</beans>
我想在spring bean中導入xml資源文件,所以我該怎麼做呢?我已經嘗試了下面的代碼,但它不工作。在spring bean中導入資源
<beans profile="en_US">
<import resource="Test.xml" />
</beans>
嘗試使用類路徑在進口標籤,就像這樣:
<beans profile="en_US">
<import resource="classpath:Test.xml" />
</beans>
假設Test.xml
位於classpath中。
這個問題很不好描述。你能否更詳細地描述你的問題? – VladoDemcak