我需要在我的一个bean中注入一个java.utils.Properties
实例。是否有一个Spring类将加载属性文件并将其转换为java.utils.Properties
实例,准备注入?
答案 0 :(得分:11)
是的,使用<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"/>