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



     本文转自1321385590 51CTO博客,原文链接:http://blog.51cto.com/linux10000/1958985,如需转载请自行联系原作者


上一篇:Schedulerx2.0分布式执行之——广播执行


下一篇:【最佳实践】如何通过OSSimport工具将线下数据迁移至金融云OSS?