Tomcat 7 通过控制台发包报上传包过大错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat 7 通过控制台发包报上传包过大错误相关的知识,希望对你有一定的参考价值。
报错日志:
Deploy Upload Failed, Exception: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (56101167) exceeds the configured maximum (52428800)
处理方法:
修改文件$tomcat_home\webapps\manager\WEB-INF\web.xml
<multipart-config>
<!-- 50MB max -->
<max-file-size>104857600</max-file-size>
<max-request-size>104857600</max-request-size>
<file-size-threshold>0</file-size-threshold>
</multipart-config>
参考博文:http://blog.csdn.net/u013474104/article/details/43670755
以上是关于Tomcat 7 通过控制台发包报上传包过大错误的主要内容,如果未能解决你的问题,请参考以下文章
jenkins git maven tomat 项目拉取编译自动部署(操作详细)