Exception during request processing: Caused by javax.servlet.ServletException with message: "Parameter count exceeded allowed maximum: 512"
在帖子中传递参数的数量似乎有限制.
如何在JBoss中扩展这个限制?
您可以通过将以下系统属性添加到配置文件(例如standalone.xml)来提高限制:
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="10000"/>
(source)