如何验证 SimpleFormController 中的请求参数 - Spring MVC

发布于 2024-09-14 02:05:04 字数 287 浏览 5 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你而言 2024-09-21 02:05:04

您应该将属性 HttpServletResponse response 放入您的方法中,如下所示

public void handleRequest(Long id, HttpServletResponse response) {
  if(!objectExists(id) {
    response.sendError(HttpServletResponse.SC_NOT_FOUND);
  }
  //do stuff
}

You should put in your method the attribute HttpServletResponse response like this

public void handleRequest(Long id, HttpServletResponse response) {
  if(!objectExists(id) {
    response.sendError(HttpServletResponse.SC_NOT_FOUND);
  }
  //do stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文