码迷,mamicode.com
首页 > 编程语言 > 详细

解决Spring MVC @ResponseBody返回中文字符串乱码问题

时间:2014-11-17 15:29:45      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   使用   sp   文件   

spring mvc使用的默认处理字符串编码为ISO-8859-1

解决方法:

第一种方法:

对于需要返回字符串的方法添加注解,如下:

@RequestMapping(value="/user/reg",produces="application/json; charset=utf-8")
@ResponseBody
public String userReg(HttpServletRequest request,HttpServletResponse response,user u) throws IOException {

  String msg = "中文乱码解决";

  return "{\"msg\":\""+msg+"\"}";
}

 

此方法只针对单个调用方法起作用。

第二种方法:

在配置文件中加入

<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>

 

解决Spring MVC @ResponseBody返回中文字符串乱码问题

标签:style   blog   http   io   color   ar   使用   sp   文件   

原文地址:http://www.cnblogs.com/cnsevennight/p/4103531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!