<bean id="propertyConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:test.properties</value>
</list>
</property>
<property name="fileEncoding" value="UTF-8"/>
</bean>
<context:property-placeholder location="classpath:test.properties" file-encoding="utf-8"/>
原文:https://www.cnblogs.com/caohui/p/9767026.html