如何修改Tomcat上传war包的大小?

修改manager的web.xml
d:\app\tomcat\apache-tomcat-7.0.79\webapps\manager\WEB-INF\web.xml

<multipart-config>
<!-- 50MB max -->
<max-file-size>52428800</max-file-size>
<max-request-size>52428800</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>

修改成

<multipart-config>
<!-- 500MB max -->
<max-file-size>524288000</max-file-size>
<max-request-size>524288000</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>

猜你喜欢

转载自www.cnblogs.com/renguanyu/p/12230176.html
今日推荐