SpringBoot文件上传:java.io.EOFException: Unexpected EOF read on the socket
程序员文章站
2022-04-19 18:23:17
...
java.io.EOFException: Unexpected EOF read on the socket
org.apache.tomcat.util.http.fileupload.impl.IOFileUploadException: Processing of multipart/form-data request failed. java.io.EOFException: Unexpected EOF read on the socket
以上问题是上传文件中断导致。
分析一
上传十几张图片至 阿里云:不超过30MB 不可能会出现图片太大上传不上去 看了很多博主的
大多数是说配置文件上传大小 和 单个文件大小。
分析二:
上传三张图片能成功,上传10就失败,
问题就分析出来了。 不是前端的请求连接超时,就是后端请求连接超时。
先解决后端上传连接时长。
在application.yml配置文件里加上一个tomcat连接时长
server.connectionTimeout =180000
再让前端看下设置的请求连接在时长范围内能完成上传。
重点观察 timeout: 180000000
//提交发现
$("#submit").click(function() {
var address= $("#in").val();
alert(address);
api.ajax({
url : releasesave.json',
data : {
},
method: 'post',
cache: 'false',
timeout: 180000000,
dataTpye: 'json'
});
});
上一篇: == 和 equal
下一篇: SpringBoot - Processing of multipart/form-data request failed. Unexpected EOF read on the socket
推荐阅读
-
java.io.EOFException: Unexpected EOF read on the socket
-
解决文件上传 java.io.EOFException: Unexpected EOF read on the socket问题
-
记录:java.io.EOFException: Unexpected EOF read on the socket
-
SpringBoot文件上传:java.io.EOFException: Unexpected EOF read on the socket
-
SpringBoot - Processing of multipart/form-data request failed. Unexpected EOF read on the socket
-
java.io.EOFException: Unexpected EOF read on the socket
-
文件上传错误:java.io.EOFException: Unexpected EOF read on the socket
-
SpringBoot 解决文件上传 java.io.EOFException: Unexpected EOF read on the socket问题