spring mvc ajax中文亂碼的幾種解決辦法

來源:互聯網
上載者:User

標籤:spring   ajax   mvc   亂碼   

使用spingmvc,在JS裡面通過ajax發送請求,並返回json格式的資料,從資料庫拿出來是正確的中文格式,展示在頁面上就是錯誤的 ,研究了一下,有幾種解決辦法。

  方法一:

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


方法四:

  直接將org.springframework.http.converter.StringHttpMessageConverter 裡面的屬性defaultCharset設定成utf-8
Xml代碼  
  1. <bean id="stringHttpMessageConverter" class="org.springframework.http.converter.StringHttpMessageConverter">  
  2.      <property name="defaultCharset" value="UTF-8"/>  
  3. </bean>  

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

spring mvc ajax中文亂碼的幾種解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.