几天,朋友需要通过Tomcat自带的Manager程序远程部署一个应用,结果出现如下错误:
严重: Servlet.service() for servlet [HTMLManager] in context with path [/manager] threw exception java.lang.IllegalStateException: org.apache.tomcat.util.http.fileupload.FileUploadBase$SizeLimitExceededException: the request was rejected because its size (66021239) exceeds the configured maximum (52428800)
通过以上异常信息,可以得知Tomcat Manager默认配置允许发布的war文件大小最大为52428800 Byte(50 MB)。但我们发布的war文件大小却有66021239 Byte(接近63 MB),超出了Tomcat Manager默认允许的最大限制,从而导致发生了上述错误。
经过检查,在Tomcat安装目录/webapps/manager/WEB-INF/web.xml
中存在如下配置片段:
<servlet>
<servlet-name>HTMLManager</servlet-name>
<servlet-class>org.apache.catalina.manager.HTMLManagerServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>2</param-value>
</init-param>
<!-- Uncomment this to show proxy sessions from the Backup manager or a
StoreManager in the sessions list for an application
<init-param>
<param-name>showProxySessions</param-name>
<param-value>true</param-value>
</init-param>
-->
<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>
</servlet>
因此我们可以推断,Tomcat Manager在web.xml
文件中配置了允许上传发布的最大war文件大小为50MB,只需要根据实际需要修改max-file-size
和max-request-size
节点中配置的文件大小限制即可。例如,可将其改为104758600(100 MB)。
按照上述方式修改配置后,重新启动Tomcat,再次上传部署该war文件,就没有再次遇到上述错误。