springmvc 发送ajax中文乱码的几种解决办法

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

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

  方法一: 

  在@RequestMapping里面加入produces = "text/html;charset=UTF-8" 
Java代码   收藏代码
  1. @RequestMapping(value = "/configrole", method = RequestMethod.GET, produces = "text/html;charset=UTF-8")  
  2. public @ResponseBody String configrole() {  
  3.   ......  
  4. }  


方法二: 

因为在StringHttpMessageConverter里面默认设置了字符集是ISO-8859-1 

所以拿到源代码,修改成UTF-8并打包到spring-web-3.2.2.jar 

Java代码   收藏代码
  1. public class StringHttpMessageConverter extends AbstractHttpMessageConverter<String>  
  2. {  
  3.   public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");  
  4.   ..........  
  5. }  
  6.    


方法三: 

修改org.springframework.http.MediaType它的构造方法的参数,并在applicationContext-mvc.xml 加入配置 
Java代码   收藏代码
  1. public MediaType(String type, String subtype, Charset charset) {  
  2.     super(type, subtype, charset);  
  3. }  


Xml代码   收藏代码
  1. <bean id="stringHttpMessageConverter"  
  2.     class="org.springframework.http.converter.StringHttpMessageConverter">  
  3.     <property name="supportedMediaTypes">  
  4.         <list>  
  5.             <bean class="org.springframework.http.MediaType">  
  6.                 <constructor-arg value="text" />  
  7.                 <constructor-arg value="plain" />  
  8.                 <constructor-arg value="UTF-8" />  
  9.             </bean>  
  10.         </list>  
  11.     </property>  
  12. </bean>  


方法4

org.springframework.http.converter.StringHttpMessageConverter类是处理请求或相应字符串的类,并且默认字符集为ISO-8859-1,所以在当返回json中有中文时会出现乱码。
StringHttpMessageConverter的父类里有个List<MediaType> 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标签


你可能感兴趣的:(spring)