JBossで最大ポスト数を設定するには、standalone.xmlのsubsystem「urn:jboss:domain:web:1.1」のconnectorに「max-post-size="XXXXX"」と指定する。
xml
<subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host" native="false">
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" max-post-size="500000"/>
<virtual-server name="default-host" enable-welcome-root="true">
<alias name="localhost"/>
<alias name="example.com"/>
</virtual-server>
</subsystem>