版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/inforstack/article/details/54427972
异常
17:51:57,240 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/].[clinicalsense]] (http-/192.168.1.77:8877-1) JBWEB000236: Servlet.service() for servlet clinicalsense threw exception: java.lang.IllegalStateException: JBWEB002004: More than the maximum number of request parameters (GET plus POST) for a single request (512) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.
解决方案
修改Jboss的standalone.xml
<system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="2000"/>
</system-properties>