tomcat无法发布war包

来源:互联网 发布:火眼金睛 软件 编辑:程序博客网 时间:2024/05/22 06:55
  1. 500:
  2. java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (61021239) exceeds the configured maximum (52428800) 

*提示为所上传的文件超过了配置文件本身限制的大小

需修改配置文件,找到此目录:

.../tomcat/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> 

 <!-- 100MB max --> 

   <max-file-size>104758600</max-file-size> 

  <max-request-size>104758600</max-request-size> 

   <file-size-threshold>0</file-size-threshold> 

 </multipart-config> 



0 0
原创粉丝点击