1. 程式人生 > >tomcat7中文字元編碼問題

tomcat7中文字元編碼問題

關於一次tomcat URI中文編碼問題處理
異常:
java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
(中文引數的uri tomcat無法進行轉義)


解決方法:

1.修改tomcat配置檔案server.xml,在Connector配置項新增relaxedQueryChars屬性
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000"
relaxedQueryChars="[]|{}^&#x5c;&#x60;&quot;&lt;&gt;"
redirectPort="8443" />
2.降低tomcat版本,比如tomcat6.0.29

這裡是引用 https://bbs.csdn.net/topics/392292638

tomcat7官方配置屬性詳解

tomcat7屬性官方配置詳解