I have an application with Jboss 7.1.1 and need to configure the maximum upload file, can anyone tell me how to increase its file upload max limit? Which configuration files I have to change and how to change? Any suggestion is very appreciated.
Add something like this to your web.xml file :
<multipart-config>
<max-file-size>5120000</max-file-size>
<max-request-size>5120000</max-request-size>
</multipart-config>