springmvc返回json字符串中文乱码 (2)

<!-- 处理请求返回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>

 

posted @ 2021-01-06 17:36  JpfBlog  阅读(38)  评论(0编辑  收藏  举报