springmvc 發送ajax出現中文亂碼的解決方案匯總_AJAX相關

來源:互聯網
上載者:User

使用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 AbstractHttpMessageConverter<String> {  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的父類裡有個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標籤

關於springmvc 發送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.