http参数MAX_COUNT wildfly的默认值是多少?

时间:2015-12-08 10:13:02

标签: jboss wildfly-8

我们已将jboss升级为wildfly,在旧版本中,我们遇到了类似Maximum number of parameter passed in a post的问题。

在旧版本的jboss中,我们收到了此错误消息

2015-02-10 20:04:34,582 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/sf].[action]] (http--
    127.0.0.1-8080-38) Servlet.service() for servlet action threw exception: java.lang.IllegalStateException: More than the 
    maximum number of request parameters (GET plus POST) for a single request ([5,000]) were detected. Any parameters beyond
     this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.
    at org.apache.tomcat.util.http.Parameters.addParameter(Parameters.java:199) [jbossweb-7.0.13.Final.jar:]
    at org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:382) [jbossweb-7.0.13.Final.jar:]
    at org.apache.tomcat.util.http.Parameters.processParameters(Parameters.java:229) [jbossweb-7.0.13.Final.jar:]
    at org.apache.catalina.connector.Request.parseParameters(Request.java:2874) [jbossweb-7.0.13.Final.jar:]
    at org.apache.catalina.connector.Request.getParameterNames(Request.java:1333) [jbossweb-7.0.13.Final.jar:]
    at org.apache.catalina.connector.RequestFacade.getParameterNames(RequestFacade.java:379) [jbossweb-7.0.13.Final.jar:]
    at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1225) [struts.jar:1.1]

现在要验证此问题,我们想知道http参数MAX_COUNT的默认值是什么。

在谷歌上搜索我发现这个讨论的地方没有提供太多的信息,关于它是如何修复的 http://lists.jboss.org/pipermail/undertow-dev/2013-April/000287.html

1 个答案:

答案 0 :(得分:3)

最大参数计数的默认值为“ 1000 ”,如果要修改

在wildfly中,我们必须在http-listener中使用“max-parameters”属性。

<http-listener name="default" socket-binding="http" max-parameters="10000"/>

有关文档,请参阅here

在7.x版本中,您可以通过以下更改来修复

org.apache.tomcat.util.http.Parameters.MAX_COUNT=10000

对于旧版本的jboss最大参数计数here