spring mvc读取properties资源文件夹中文乱码问题

通过在applicationContext.xml和springmvc.xml中配置

    <bean
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <array>
                <value>/WEB-INF/conf/dhcp.properties</value>
                <value>/WEB-INF/conf/security.properties</value>
            </array>
        </property>
        <property name="fileEncoding">
                <value>utf-8</value>
        </property>
    </bean>

 

posted @ 2018-02-06 16:01  灏月天染  阅读(220)  评论(0编辑  收藏  举报