本文主要是介绍Tomcat设置URL兼容特殊符号,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
catalina.properties配置:
tomcat.util.http.parser.HttpParser.requestTargetAllow=|{}[]
org.apache.tomcat.util.buf.UDecoder.ALLOW_ENCODED_SLASH=true
server.xml配置:
<Connector port="80" protocol="HTTP/1.1"connectionTimeout="20000"redirectPort="8443" relaxedPathChars="[]|" relaxedQueryChars="[]|{}^\`"<>" useBodyEncodingForURI="true" URIEncoding="UTF-8"/>
这篇关于Tomcat设置URL兼容特殊符号的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!