美文网首页
Spring http 400 bad request问题排查办

Spring http 400 bad request问题排查办

作者: nitricoxide | 来源:发表于2023-01-31 18:31 被阅读0次

spring中的http响应400,99%的可能就是传参错误了,那么如果遇到参数比较多的情况如何排查问题?

在spring mvc中org.springframework.web.servlet.mvc.method.annotation.ResponseEntityExceptionHandler负责所有异常的统一处理,我们需要在方法handleException上打断点。

可以看到问题原因是时间类型转换错误,我的接收类中的属性类型是LocalDateTime,而前端需要传递yyyy-MM-dd HH:mm:ss的格式,缺少了时分秒

相关文章

网友评论

      本文标题:Spring http 400 bad request问题排查办

      本文链接:https://www.haomeiwen.com/subject/jfdbhdtx.html