后台报错java.lang.IllegalArgumentException: Invalid character found in the request target.

Posted 樱花落&浅暮雪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台报错java.lang.IllegalArgumentException: Invalid character found in the request target.相关的知识,希望对你有一定的参考价值。

报错:

Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level.  

java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986……

 

错误原因:

当在浏览器中访问时 URL中带有特殊字符,如花括号冒号时,就会出现这个错误。

例如:http://localhost:8080/index.do?{id:123}

解决方法:

1、去除URL中的特殊字符;

3、使用 Post 方法提交数据

4、更换低版本的Tomcat来规避这种问题。

5、在 conf/catalina.properties  添加或者修改: 

  5.1  添加  tomcat.util.http.parser.HttpParser.requestTargetAllow=|{} 

5.2  修改tomcat/conf/catalina.properties的配置文件
Tomcat在 7.0.73, 8.0.39, 8.5.7 版本后,添加了对于http头的验证。
具体来说,就是添加了些规则去限制HTTP头的规范性
org.apache.tomcat.util.http.parser.HttpParser#IS_NOT_REQUEST_TARGET[]中定义了一堆not request target
if(IS_CONTROL[i] || i > 127 || i == 32 || i == 34 || i == 35 || i == 60 || i == 62 || i == 92 || i == 94 || i == 96 || i == 123 || i == 124 || i == 125) {
IS_NOT_REQUEST_TARGET[i] = true;
}
转换过来就是以下字符(对应10进制ASCII看):
键盘上那些控制键:(<32或者=127)
非英文字符(>127)
空格(32)
双引号(34)
#(35)
<(60)
>(62)
反斜杠(92)
^(94)
TAB上面那个键,我也不晓得嫩个读(96)
{(123)
}(124)
|(125)

 

重启服务器后,解决问题。

总结:

个人本地在conf/catalina.properties 中添加   tomcat.util.http.parser.HttpParser.requestTargetAllow=|{} ,成功解决问题。





















以上是关于后台报错java.lang.IllegalArgumentException: Invalid character found in the request target.的主要内容,如果未能解决你的问题,请参考以下文章

功能文件指向不存在的项目

Android应用打破65K方法数限制

为啥 FileChannel.map 占用了 Integer.MAX_VALUE 的数据?

带有 JPA 的 Spring Boot:将 @Entity 移动到不同的包

spring.config.location 在 Spring Boot 2.0.0 M6 上不起作用

请求一个方法,后台能正常执行,前台报错404