Spring MVC 请求体错误处理
在使用 @RequestBody StreamSource
时发现,如果请求正文中的 xml 无效 StreamSource
会抛出异常(导致 400 Bad Request)并且我无法处理它(告诉客户哪里不好)。
有没有办法处理这样的异常?
While using @RequestBody
StreamSource
found out, that if xml in request body in not valid StreamSource
throws an Exception(resulting in 400 Bad Request) and i'm not able to handle it(tell client what is bad).
Is there a way to handle such exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,您可以通过这种方式捕获 Spring MVC 中的异常:
您可以将其映射到任何异常时间并将用户重定向到带有任何消息的任何页面。
或者:您可以在
@ResponseBody
中返回它:In general You can catch exception in Spring MVC that way:
You can map it to any exception time and redirect user to any page with any mesage.
Alternatively: you can return it in
@ResponseBody
: