报错日志:
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
时间: 2024-10-26 01:56:04