您好,登錄后才能下訂單哦!
這篇文章主要介紹了SpringMVC請求/響應(yīng)亂碼問題解決方案解析,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
GET請求亂碼原因分析
GET請求參數(shù)是通過請求行中的URL發(fā)送給Web服務(wù)器(Tomcat)的。
Tomcat服務(wù)器會對URL進(jìn)行編碼操作(此時使用的是Tomcat設(shè)置的字符集,默認(rèn)是iso8859-1)
到了我們的應(yīng)用程序中的請求參數(shù),已經(jīng)是被Tomcat使用ISO8859-1字符集進(jìn)行編碼之后的了。
解決方式
方式一
修改tomcat配置文件,指定UTF-8編碼,如下:
<Connector URIEncoding="utf-8" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
方式二
對請求參數(shù)進(jìn)行重新編碼
String username = new String(request.getParamter("userName").getBytes("ISO8859-1"),"utf-8")
方式三
過濾器+請求裝飾器統(tǒng)一解決請求亂碼
MyRequestWrapper
MyCharacterEncodingFilter
請求亂碼解決之post亂碼問題#
在web.xml中加入:
<filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
響應(yīng)亂碼之post亂碼問題
使用@RequestMapping注解中的produces屬性,指定響應(yīng)體的編碼格式
方式一:方法體上
@RequestMapping(value = "findItem",produces = "application/json;charset=utf8") @ResponseBody public String findItem(Integer id) { return "接收到的請求參數(shù)是:" + id; }
方式二:類上(統(tǒng)一管理編碼格式)
//@Controller //RestController:注解相當(dāng)于Controller注解和ResponseBody注解的結(jié)合體 @RestController @RequestMapping(value = "item",produces = "application/json;charset=utf8") public class ItemController {}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。