springmvc @responsebody json字符编码
Posted HelloWorld
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springmvc @responsebody json字符编码相关的知识,希望对你有一定的参考价值。
方法一,使用(produces = "application/json; charset=utf-8"):
@RequestMapping(value="/getUsersByPage",produces = "application/json; charset=utf-8") // @RequestMapping("/getUsersByPage") @ResponseBody public String getUsersByPage(String page,String rows,String text,HttpServletRequest request,HttpServletResponse response){
方法二,在spring-mvc.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 @responsebody json字符编码的主要内容,如果未能解决你的问题,请参考以下文章
springmvc @responsebody json字符编码
springmvc @ResponseBody返回json 报406 not acceptable
SpringMVC 使用@ResponseBody返回json 中文乱码
SpringMVC -- SpringMVC的数据响应 回写数据 @ResponseBody(普通字符串,Json格式(FastJsonjackson配置优化))