基于语言Properties Placeholder加载属性文件

时间:2013-11-21 05:04:46

标签: java spring properties

class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
 <property name="locations">
    <value>classpath*:app.properties</value>

加载单个属性文件工作正常,但现在我需要根据作为请求(有效负载)输入提供的语言加载app_en.propertiesapp_fr.properties文件。如何配置?

1 个答案:

答案 0 :(得分:0)

使用此标记

<property name="locations">
    <list>
        <value>classpath*:app.properties</value>
        <value>classpath*:app_en.properties</value>
    </list>
</property>