今天,部署开发站点代码在Tomcat(7.057版)中 xyz.war 文件,我面临着在Tomcat中上传大小限制以下问题。
Caused by: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (128382112) exceeds the configured maximum (104828800)
增加Tomcat的上传文件大小限制
为了增加Tomcat中的上传大小限制编辑
webapps/manager/WEB-INF/web.xml 配置文件,并搜索以下内容。
# cd /path/to/tomcat
# vim webapps/manager/WEB-INF/web.xml
<multipart-config>
<max-file-size>52428800</max-file-size>
<max-request-size>52428800</max-request-size>
<file-size-threshold>0<</file-size-threshold>
</multipart-config>
编辑
max-file-size 和
max-request-size,提高它的大小,根据您的需求。 这些值以
字节定义的,默认值设定为50Mb。 所有上述更改后,需要重新启动Tomcat实例。