Tomcat:URL中文编码设置

来自WHY42
imported>Soleverlee2015年4月12日 (日) 15:23的版本

tomcat中,如果不设置URL编码,URL中带有中文字符时会导致乱码。解决方法是对URL进行编码,并在tomcat中进行设置。 server.xml

<Connector port="8080" protocol="HTTP/1.1"
              connectionTimeout="20000"
              redirectPort="8443"
              URIEncoding="UTF-8" />