This application has no explicit mapping for /error, so you are seeing this as a fallback. Wed May 31 21:01:35 CST 2023 There was an unexpected error (type=Bad Request, status=400). Required request body is missing: public com.qf.result.ResultObject com.qf.controller.TransferStationMailContrller.add(com.qf.pojo.TransferStationMail) org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public com.qf.result.ResultObject com.qf.controller.TransferStationMailContrller.add(com.qf.pojo.TransferStationMail)
时间: 2023-12-06 10:02:34 浏览: 653
时间直接运动矢量举例-西门子 电子式软启动器3rw34用户指导手册
根据你提供的信息,这似乎是一个Spring Boot应用程序的错误。错误的原因是请求体缺失,导致无法解析请求。你应该检查请求的内容是否正确,并确保已正确设置请求的头部和体部。此外,你可以在控制器方法上添加 @RequestBody 注释来确保请求体被正确解析。如果问题仍然存在,你可以尝试使用调试工具来进一步排查问题。
阅读全文