主页 > 知识库 > springmvc 发送ajax出现中文乱码的解决方法汇总

springmvc 发送ajax出现中文乱码的解决方法汇总

热门标签:团购网站 电子围栏 服务器配置 银行业务 Linux服务器 科大讯飞语音识别系统 阿里云 Mysql连接数设置

使用spingmvc,在JS里面通过ajax发送请求,并返回json格式的数据,从数据库拿出来是正确的中文格式,展示在页面上就是错误的??,研究了一下,有几种解决办法。 

我使用的是sping-web-3.2.2,jar

  方法一:

  在@RequestMapping里面加入produces = "text/html;charset=UTF-8"

@RequestMapping(value = "/configrole", method = RequestMethod.GET, produces = "text/html;charset=UTF-8") 
public @ResponseBody String configrole() { 
 ...... 
} 

方法二:

因为在StringHttpMessageConverter里面默认设置了字符集是ISO-8859-1
所以拿到源代码,修改成UTF-8并打包到spring-web-3.2.2.jar

public class StringHttpMessageConverter extends AbstractHttpMessageConverterString> 
{ 
 public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8"); 
 .......... 
}

方法三:

修改org.springframework.http.MediaType它的构造方法的参数,并在applicationContext-mvc.xml 加入配置

public MediaType(String type, String subtype, Charset charset) { 
  super(type, subtype, charset); 
} 

Xml代码 

bean id="stringHttpMessageConverter" 
  class="org.springframework.http.converter.StringHttpMessageConverter"> 
  property name="supportedMediaTypes"> 
    list> 
      bean class="org.springframework.http.MediaType"> 
        constructor-arg value="text" /> 
        constructor-arg value="plain" /> 
        constructor-arg value="UTF-8" /> 
      /bean> 
    /list> 
  /property> 
/bean> 

方法4

org.springframework.http.converter.StringHttpMessageConverter类是处理请求或相应字符串的类,并且默认字符集为ISO-8859-1,所以在当返回json中有中文时会出现乱码。

StringHttpMessageConverter的父类里有个ListMediaType> supportedMediaTypes属性,用来存放StringHttpMessageConverter支持需特殊处理的MediaType类型,如果需处理的MediaType类型不在supportedMediaTypes列表中,则采用默认字符集。

解决办法,只需在配置文件中加入如下代码:

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>

如果需要处理其他 MediaType 类型,可在list标签中加入其他value标签

关于springmvc 发送ajax出现中文乱码问题小编就给大家介绍到这里,希望对大家有所帮助!

您可能感兴趣的文章:
  • springMVC向Controller传值出现中文乱码的解决方案
  • 解决SpringMVC、tomcat、Intellij idea、ajax中文乱码问题
  • SpringMVC post请求中文乱码问题解决
  • SpringMvc后台接收json数据中文乱码问题详解
  • 解决SpringMVC Controller 接收页面传递的中文参数出现乱码的问题
  • 解决SpringMvc后台接收json数据中文乱码问题的几种方法
  • SpringMVC中解决@ResponseBody注解返回中文乱码问题
  • 解决springmvc+mybatis+mysql中文乱码问题
  • SpringMVC 中文乱码的解决方案

标签:枣庄 广元 衢州 蚌埠 大理 衡水 江苏 萍乡

巨人网络通讯声明:本文标题《springmvc 发送ajax出现中文乱码的解决方法汇总》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266