如何验证 SimpleFormController 中的请求参数 - Spring MVC
我想使用 SimpleFormController 处理更新操作。 该控制器的 URL 如下所示:
http://example.com/updatesomething.html?id= 42
我想知道如何在开始时验证给定 id (42) 的对象是否存在,因为我想在 id 不正确时显示 404 错误页面并停止处理。
预先感谢您的回答。
I want handle update operation using SimpleFormController.
URL to this controller looks as follow:
http://example.com/updatesomething.html?id=42
I wonder how to validate on the begining if object with the given id (42) exists, because I want display 404 error page when id is incorrect and stop processing.
Thanks in advance for your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将属性
HttpServletResponse response
放入您的方法中,如下所示You should put in your method the attribute
HttpServletResponse response
like this