java.util.Properties
对象。 感谢关于此的任何指示。
谢谢, cabear
答案 0 :(得分:1)
要在Spring中加载属性文件,请使用PropertiesFactoryBean
以便于使用,properties
命名空间中可以使用util
标记。
<util:properties id="props" location="location-of.properties" />
然后你有一个名为props
的bean,它可以用作任何常规bean。
<bean id="otherBean" class="my.app.MyClass" >
<constructor-arg ref="props" />
</bean>
当使用属性占位符支持时,您可以再次使用相同的属性对象,而不是再次加载它,方法是使用properties-ref
标记的property-placeholder
属性引用它。
<context:property-placeholder properties-ref="props" />
答案 1 :(得分:0)
以下是阅读属性文件的方法:
@Value("${memberaddedsubject}") // id of the content you want to read.
private String memberAddedSubject; // Taking content in String class.
要使用此属性文件,您必须以这种方式指示spring:
<util:properties id="props" location="your-location-to-props" />
在applicationContext.xml或您拥有的XML文件(不是web.xml)
中添加上述行我已将我的属性文件放在/ projectname / resources /中。
我希望这就是你要找的东西,如果没有,请告诉我。