Spring的PropertyPlaceholderConfigurer,在jar文件中包含属性

时间:2009-10-21 09:36:49

标签: spring properties

我有多个需要引用的属性文件。下面我可以参考类路径中的两个。

如何在jar文件中引用属性文件?

  <bean  id="placeholderConfig" name="placeholderConfig"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
  <list>
    <value>classpath:config/my_test.properties</value>
    <value>classpath:config/some_other.properties</value>
  </list>
</property>

  

1 个答案:

答案 0 :(得分:5)

如果JAR在类路径中,那么您可以像其他任何资源一样引用内部的属性文件。只需在JAR文件中指定属性文件的位置即可。