springmvc返回json字符串中文乱码问题


	springmvc返回json字符串中文乱码问题
[编程语言教程]

在springmvc.xml配置:

<!-- 处理请求返回json字符串的乱码问题 -->  
     <mvc:annotation-driven>
        <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>application/json;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

springmvc返回json字符串中文乱码问题

原文地址:https://www.cnblogs.com/pengsay/p/14404022.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » springmvc返回json字符串中文乱码问题