您的位置:首页 > 编程语言 > Java开发

使用Spring PropertyPlaceholderConfigurer 配置中文出现乱码的解决方法

2017-10-25 14:41 483 查看

问题描述

在使用
org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
读取配置文件时,发现对于中文的处理会出现乱码现象,比如有如下的配置项及其内容:

content.shell=#!/bin/bash \necho  "test,测试一下!!" \nsleep  $1


采用如下的配置方式:

<bean id="propertyConifgurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:evn.properties</value>
</property>
</bean>


通过Spring获取到的配置项内容,中文变成了乱码。

解决方法

通过了解类
org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
的继承关系,发现父类
org.springframework.core.io.support.PropertiesLoaderSupport
中有这样的属性
fileEncoding
,这一属性的使用是在loadProperties方法中:

/**
* Load properties into the given instance.
* @param props the Properties instance to load into
* @throws IOException in case of I/O errors
* @see #setLocations
*/
protected void loadProperties(Properties props) throws IOException {
if (this.locations != null) {
for (Resource location : this.locations) {
if (logger.isInfoEnabled()) {
logger.info("Loading properties file from " + location);
}
try {
PropertiesLoaderUtils.fillProperties(
props, new EncodedResource(location, this.fileEncoding), this.propertiesPersister);
}
catch (IOException ex) {
if (this.ignoreResourceNotFound) {
if (logger.isWarnEnabled()) {
logger.warn("Could not load properties from " + location + ": " + ex.getMessage());
}
}
else {
throw ex;
}
}
}
}
}


通过添加
fileEncoding=utf-8
属性可以解决上述问题:

<bean id="propertyConifgurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:evn.properties</value>
</property>
<property name="fileEncoding">
<value>utf-8</value>
</property>
</bean>


聊以总结!

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息