运行tomcat时,本以为成功了,结果,突然出现这两个错误 org.apache.coyote.http11.Http11Processor.service 解析 HTTP 请求 header 错误注意:HTTP请求解析错误的进一步发生将记录在DEBUG级别。 java.lang.IllegalArgumentException: 在方法名称中发现无效的字符串, HTTP 方法名必须是有效的符号。
解决方法:进入tomcat --> conf--> server.xml,找到此文件,用记事本打开。找到以下代码,大概在69行
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="8000"
redirectPort="8443"
maxParameterCount="1000"
URIEncoding="utf-8"
server="Mic"
/>
<!-- A "Connector" using the shared thread pool-->
修改为:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="8000"
redirectPort="8443"
maxParameterCount="1000"
URIEncoding="utf-8"
server="Mic"
relaxedPathChars="|{}[],%"
relaxedQueryChars="|{}[],%"/>
/>
<!-- A "Connector" using the shared thread pool-->
标签:HTTP,错误,tomcat,--,header,解析
From: https://blog.51cto.com/meiling/8842999