在tomcat下的conf目录文件夹下server.xml文件中添加 useBodyEncodingForURI="true" 能很好的解决此类问题的发生。
可以在server.xml文件中搜索:protocol="HTTP/1.1"
在当前的Connector 标签内,添加即可;
<Connector port="8080" useBodyEncodingForURI="true"redirectPort="8443" connectionTimeout="20000" protocol="HTTP/1.1"/>