我从客户那里得到大文件。我正在使用 MultipartRequest 来处理请求。但它抛出异常
java.io.IOException: Posted content length of 3921442 exceeds limit of 1048576
我尝试在 web.xml 中添加以下代码(过滤器)。但它不工作
<filter>
<filter-name>multipartFilter</filter-name>
<filter-class>com.oreilly.servlet.MultipartFilter</filter-class>
<init-param>
<param-name>maxSize</param-name>
<param-value>5000000</param-value>
</init-param>
</filter>