SSM controller返回json中文乱码解决方法

Posted 就是你baby

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SSM controller返回json中文乱码解决方法相关的知识,希望对你有一定的参考价值。

方法1:

@RequestMapping(value="/aliang",produces = "text/plain;charset=utf-8")
@ResponseBody
需要在每一个的方法中都要写上 produces = "text/plain;charset=utf-8"

方法1:

<mvc:annotation-driven >
<mvc:message-converters register-defaults="true">
<bean class="org.springframework.http.converter.StringHttpMessageConverter" >
<property name = "supportedMediaTypes">
<list>
<value>application/json;charset=utf-8</value>
<value>text/html;charset=utf-8</value>
<!-- application 可以在任意 form 表单里面 enctype 属性默认找到 -->
<value>application/x-www-form-urlencoded</value>
</list>
</property>
</bean>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" ></bean>
</mvc:message-converters>
</mvc:annotation-driven>
这种方法只需要在 spring-mvc.xml 配置文件中配置一次就好,省去了我们重复写的麻烦,配置内容如上。
注意:
org.springframework.http.converter.json.MappingJacksonHttpMessageConverter(个人用这个成功)
可能出现不兼容情况时使用:
org.springframework.http.converter.json.MappingJackson2HttpMessageConverter(网上查询说的是这个,但运行方法时报错)





以上是关于SSM controller返回json中文乱码解决方法的主要内容,如果未能解决你的问题,请参考以下文章

SSM框架中Json数据出现乱码问题

ssm+easyUI datagrid 不能显示后台controller层返回的json数据

(04)Spring MVC之Get方式传参访问Controller,从Controller返回json串出现菱形问号(?????)乱码,解决方法。

idea ssm项目出现日志中文乱码,封装的json中的msg字段中文乱码(但是json封装的bean中的字段不乱码)等其他各种项目下的中文乱码解决方案

ssm中从页面到controller和数据库出现乱码问题的解决

tp3.2 ajaxReturm方法 返回中文时乱码问题