# JBOSS 參數過多無法提交
錯誤訊息:
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.
修正方法:
在standalone\configuration\standalone.xml中
的<system-properties>裡面加入這個節點
```\
<system-properties>
<property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="5000"/>
</system-properties>
```
###### tags: JBOSS