springmvc 接口返回类转为json,并处理中文乱码问题

Posted 黑线

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springmvc 接口返回类转为json,并处理中文乱码问题相关的知识,希望对你有一定的参考价值。

在springmvc.xml中加入下面一段

    <mvc:annotation-driven>
        <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <!-- 用于避免响应头过大 -->
                <property name="writeAcceptCharset" value="false"/>
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/plain;charset=UTF-8</value>
                        <value>text/html;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
            <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/json;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>

如果只是解决中文乱码问题只要加入下面一段

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
                <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                    <property name="supportedMediaTypes">
                        <list>
                            <value>text/plain;charset=UTF-8</value>
                        </list>
                    </property>
                </bean>
            </list>
        </property>
    </bean>

 

以上是关于springmvc 接口返回类转为json,并处理中文乱码问题的主要内容,如果未能解决你的问题,请参考以下文章

使用SpringMVC返回java对象数据时会自动转为json格式传给前端

JSON多层嵌套复杂结构数据扁平化处理转为行列数据

SpringMVC返回JSON数据以及文件上传过滤静态资源

springmvc中Controller返回json时不处理空值的方法

学习SpringMVC

学习SpringMVC