4
我需要將一個java.utils.Properties
實例注入到我的一個bean中。有沒有一個Spring類會加載屬性文件並將其轉換爲java.utils.Properties
實例,準備注入?將屬性文件加載到java.util.Properties中?
我需要將一個java.utils.Properties
實例注入到我的一個bean中。有沒有一個Spring類會加載屬性文件並將其轉換爲java.utils.Properties
實例,準備注入?將屬性文件加載到java.util.Properties中?
是的,使用<util:properties>
(見documentation)。
例子:
<!-- creates a java.util.Properties instance with values loaded from the supplied location -->
<util:properties id="jdbcConfiguration" location="classpath:com/foo/jdbc-production.properties"/>
+1:幫我解決一個問題今天謝謝。 – nattyddubbs 2013-04-26 13:55:00