在平时开发过程中~经常会用读取properties文件的情况,properties文件中文乱码也经常会遇到,以下是我的填坑步骤:
一、在引用org.springframework.beans.factory.config.PropertyPlaceholderConfigurer的时候有一个编码配置属性,配置为UTF-8 就Ok~
<!-- 属性文件读入 -->
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:props/*.properties</value>
</list>
</property>
<property name="fileEncoding" value="UTF-8"/>
</bean>
网友评论