4.18

yblll發表於2024-06-18

關於配置Tomcat的URIEncoding

遇到的問題:

程式需要傳送http GET請求到伺服器,請求的引數中包含了中文字元。程式中引數為UTF-8格式,且經過了UTF-8 URL編碼再傳送。使用的tomcat伺服器,但伺服器端後臺程式中取到的引數的中文是亂碼。

問題原因:

經過分析,應該是Tomcat在解析引數的時候沒有使用正確的編碼格式(UTF-8)去解碼。

檢視$TOMCAT_HOME/webapps/tomcat-docs/config/http.html這個說明文件,有如下說明:
URIEncoding:This specifies the character encoding used to decode the URI bytes, after %xx decoding the URL. If not specified, ISO-8859-1 will be used.

也就是說,如果沒有設定URIEncoding, Tomcat預設是按ISO-8859-1進行URL解碼,ISO-8859-1並未包括中文字元,這樣的話中文字元肯定就不能被正確解析了。

解決辦法:

修改Tomcat的pom.xml,如下:

<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<uriEncoding>UTF-8</uriEncoding>
</configuration>
</plugin>
</plugins>

</build>