91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringMvc返回@ResponseBody出現中文亂碼該怎么辦

發布時間:2021-11-26 11:04:05 來源:億速云 閱讀:373 作者:柒染 欄目:開發技術

SpringMvc返回@ResponseBody出現中文亂碼該怎么辦,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

使用SpringMvc的@ResponseBody返回指定數據的類型做為http體向外輸出,在瀏覽器里返回的內容里有中文,會出現亂碼,項目的編碼、tomcat編碼等都已設置成utf-8,如下返回的是一個字符串中文亂碼。

Java代碼  

  1. @RequestMapping("user/get_comment_list.do")  

  2.     public @ResponseBody String getUserCommentList(Integer user_id,Byte type){  

  3.         HashMap<String, Object> map = new HashMap<String, Object>();  

  4.         map.put("type", type);  

  5.         map.put("user_id", user_id);  

  6.         CommentActPojo actPojo = new CommentActPojo();  

  7.         List<CommentInfo> list = this.bo.getComList(map);  

  8.         actPojo.setComments(list);  

  9.         //System.out.println("數據:"+JsonUtil.toJson(actPojo));//打印數據無中文亂碼  

  10.         return JsonUtil.toJson(actPojo);  

  11.     }  



SpringMvc使用的版本是3.2.2,后來網上找了一些資料,在@RequestMapping里強制指定返回的數據類型和字符編碼,中文亂碼解決,如下: 

Java代碼  

  1. @RequestMapping(value="user/get_comment_list.do",produces = "application/json; charset=utf-8")  


  下載地址 最主流的Java后臺 SSM 框架 springmvc spring mybatis 項目源碼
問題來了,如果項目里有很多類似這樣的請求,每個請求都去配置produces,會很累贅且繁瑣,查看了一下源代碼,發現在spring處理ResponseBody時涉及到org.springframework.http.converter.StringHttpMessageConverter這個類,該類在默認實現中將defaultCharset設為ISO-8859-1。當@RequestMapping標記的方法未配置produces屬性時,將自動使用默認編碼;如果配置了produces屬性,AbstractHttpMessageConverter中的write方法將不會受supportedMediaTypes影響,而用produce設置的header賦值給contenttype。改造一下RequestMappingHandlerAdapter的配置,springMvc.xml如下:

Java代碼  

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <beans xmlns="http://www.springframework.org/schema/beans"  

  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"  

  4.     xmlns:mvc="http://www.springframework.org/schema/mvc"  

  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  

  6.                         http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  

  7.                         http://www.springframework.org/schema/context   

  8.                         http://www.springframework.org/schema/context/spring-context-3.2.xsd  

  9.                         http://www.springframework.org/schema/mvc  

  10.                         http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">  

  11.       

  12.     <!-- 必須放在<mvc:annotation-driven>之前 -->    

  13.     <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">    

  14.         <property name="messageConverters">    

  15.             <list>    

  16.                 <bean class="org.springframework.http.converter.StringHttpMessageConverter">    

  17.                     <property name="supportedMediaTypes">    

  18.                         <list>    

  19.                             <value>text/plain;charset=UTF-8</value>  

  20.                             <value>text/html;charset=UTF-8</value>  

  21.                             <value>applicaiton/javascript;charset=UTF-8</value>    

  22.                         </list>    

  23.                     </property>    

  24.                 </bean>    

  25.             </list>    

  26.         </property>    

  27.     </bean>  

  28.       

  29.     <!-- 掃描工程文件 -->  

  30.     <context:component-scan base-package="com.tcl.club.core" />  

  31.     <context:component-scan base-package="com.cus.back" >  

  32.         <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />  

  33.     </context:component-scan>  

  34.       

  35.     <mvc:annotation-driven />  

  36.   

  37.     <bean id="multipartResolver"  

  38.         class="org.springframework.web.multipart.commons.CommonsMultipartResolver" />  

  39.       

  40.       

  41.     <!-- 對模型視圖名稱的解析,即在模型視圖名稱添加前后綴,在requestmapping輸入的地址后自動調用該類進行視圖解析 -->  

  42.     <bean id="viewResolver"  

  43.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">  

  44.         <property name="viewClass"  

  45.             value="org.springframework.web.servlet.view.JstlView" />  

  46.         <property name="prefix" value="/WEB-INF/view/" />  

  47.         <property name="suffix" value=".jsp" />  

  48.     </bean>  

  49.       

  50. </beans>   



上述springMvc.xml文件重新設置了StringHttpMessageConverter的編碼方式,而不必在每個@RequestMapping里設置produces屬性。如果返回的Jackson類型的數據,可以設置成如下:

Java代碼  

  1. <bean    

  2.        class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">    

  3.        <property name="supportedMediaTypes">    

  4.            <list>    

  5.                <value>application/json; charset=UTF-8</value>    

  6.                <value>application/x-www-form-urlencoded; charset=UTF-8</value>    

  7.            </list>    

  8.        </property>    

  9. </bean>   

看完上述內容,你們掌握SpringMvc返回@ResponseBody出現中文亂碼該怎么辦的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普定县| 固原市| 绥滨县| 莱阳市| 乃东县| 黑水县| 婺源县| 玉环县| 大同县| 麻阳| 大渡口区| 孟州市| 调兵山市| 汶川县| 清流县| 隆尧县| 乐山市| 高碑店市| 东方市| 伊金霍洛旗| 竹山县| 乌兰察布市| 甘孜县| 六盘水市| 城步| 安西县| 湟中县| 岑巩县| 镇康县| 彭州市| 洞口县| 河南省| 黔东| 潮州市| 新泰市| 出国| 工布江达县| 修武县| 盐津县| 敦化市| 枣强县|