html – 在帖子中传递的参数的最大数量

前端之家收集整理的这篇文章主要介绍了html – 在帖子中传递的参数的最大数量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到这个错误
Exception during request processing:
Caused by javax.servlet.ServletException with message:
"Parameter count exceeded allowed maximum: 512"

在帖子中传递参数的数量似乎有限制.

如何在JBoss中扩展这个限制?

解决方法

所有Web服务器中的参数数量有限,以插入 hashmap collision denial of service attack.

您可以通过将以下系统属性添加配置文件(例如standalone.xml)来提高限制:

<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="10000"/>

(source)

原文链接:https://www.f2er.com/html/230167.html

猜你在找的HTML相关文章