1. 程式人生 > >spring mvc properties 中文亂碼

spring mvc properties 中文亂碼

properties中加了配置,有中文,不設定一下的話,注入bean讀出來的是亂碼,是這樣的:

{1,"֪ͨÊé±àºÅ"},{2£¬"ѧÉúÁбí"}

在spring-servlet.xml中設定一下編碼格式就好了

<!--載入配置檔案-->
    <context:property-placeholder  location="classpath:config.properties" file-encoding="gb2312"/>

  <!--注入匯出類別型別-->
    <bean id="exportType" class
="com.normalClass.ExportType">
<property name="types" value="${config.export.type}"></property> </bean>
public class ExportType {
    private static String types;

    public  void setTypes(String types) {
        ExportType.types = types;
    }

    public static String getTypes
() { return types; } }