class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<value>classpath*:app.properties</value>
加载单个属性文件工作正常,但现在我需要根据作为请求(有效负载)输入提供的语言加载app_en.properties
和app_fr.properties
文件。如何配置?
答案 0 :(得分:0)
使用此标记
<property name="locations">
<list>
<value>classpath*:app.properties</value>
<value>classpath*:app_en.properties</value>
</list>
</property>