记录:java.io.EOFException: Unexpected EOF read on the socket
程序员文章站
2022-04-19 18:23:17
...
记录:java.io.EOFException: Unexpected EOF read on the socket
EOFException 的含义
转载自:https://www.jianshu.com/p/6d9a11f3c537
Signals that an end of file or end of stream has been reached unexpectedly during input.
在输入过程中意外地到达文件结尾或流结束的信号
springboot应用打印出debug级别日志(在排查问题时,可以尝试使用debug级别日志)发现:通过postman发送的请求,能够看到request请求的请求体;但通过前端应用发送的请求,没有request请求体。
而request请求体是流式数据,如果在其他地方消费过,不做特殊处理的话,后面的应用就消费不到了!
在mock中消费了requestBody,导致在node转发时,request请求体丢失。
EOFException根因分析前端mock把requestBody给消费掉了,导致传到后端没有body,后端在解析的时候发现request请求头的content-length是59,就一直等待接收数据,与此同时,前端也在等待后端返回结果。1分钟后,前端等待超时,前端发EOF请求(具体为何会发EOF还需要进一步学习),后端收到以后,发现和预期的消息不一致,就报了EOF这个错误。
上一篇: 关于初始化
下一篇: org.apache.catalina.connector.ClientAbortException: java.io.EOFException: Unexpected EOF read on the
推荐阅读
-
java.io.EOFException: Unexpected EOF read on the socket
-
解决文件上传 java.io.EOFException: Unexpected EOF read on the socket问题
-
Unexpected EOF read on the socket
-
记录:java.io.EOFException: Unexpected EOF read on the socket
-
org.apache.catalina.connector.ClientAbortException: java.io.EOFException: Unexpected EOF read on the
-
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问题