struts文件上传时异常问题

连接远程服务器上传文件时常常出现各种异常

Processing of multipart/form-data request failed. Stream ended unexpectedly

或者

Processing of multipart/form-data request failed. Read Timeout

客户端网络速度慢 导致上传重连 超时

配置应用服务器tomcat超时时间

connectionTimeout="60000"
keepAliveTimeout="200000"

connectionTimeout - 网络连接超时,单位:毫秒

keepAliveTimeout - 长连接最大保持时间(毫秒)


原文地址:https://www.cnblogs.com/liaomin416100569/p/9331420.html