本文主要是介绍[SpringMVC] @ResponseBody 返回中文乱码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考:解决SpringMVC的@ResponseBody返回中文乱码
原理见: SpringMVC 中 HTTP 请求与响应原理
1、现象
客户端代码
function fToSubmitNormal(e) {var oForm = {};oForm["labelname"] = "中文标签";oForm["status"] = 0;$.ajax({url: e.data.url,method: 'post',data: JSON.stringify(oForm),contentType: 'application/json',success: function(data) {console.log(data);},error: function(data) {console.log("saveObj error..."+data);}});},
服务端代码
@RequestMapping(value = "/saveByModel")@ResponseBodypublic String saveByModel(@RequestBody Label label) {if(this.labelService.update(label) != 0){return "更新成功!";}return "更新标签失败!";}
结果:
2、原因
SpringMVC默认处理的字符集是ISO-8859-1。
接口定义为 @ResponseBody
,使用的返回值处理器为 RequestResponseBodyMethodProcessor
,使用HttpMessageConverter
消息转换机制,会调用对应的 HttMessageConverter
处理类。支持 String
类型的消息转换器有 StringHttpMessageConverter, MappingJackson2HttpMessageConverter
。系统默认支持的媒体列表有:
取得媒体列表后,会选取其中的一个:
从图中可以看出 String
返回值类型取得的媒体类型为 text/plain;charset=ISO-8859-1
,且使用 StringHttpMessageConverter
消息转换类。将该媒体类型设置为 response
的 contentType
, 因此返回中文乱码:
3、解决
可修改字符编码,如 springmvc.xml 文件加上如下配置:
<mvc:annotation-driven ><!-- 消息转换器 --><mvc:message-converters register-defaults="true"><bean class="org.springframework.http.converter.StringHttpMessageConverter"><property name="supportedMediaTypes" value="text/plain;charset=UTF-8"/></bean></mvc:message-converters></mvc:annotation-driven>
正确结果:
或者指定返回的编码集,如:
@RequestMapping(value = "/save-by-model", method = RequestMethod.POST, produces = "text/plain;charset=utf-8")
@ResponseBody
public String saveByModel(@RequestBody Category category) {return category.toString();
}
这篇关于[SpringMVC] @ResponseBody 返回中文乱码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!