Spring 3.0中找不到自定义页面及其他错误网页

发布于 2024-10-05 19:53:16 字数 313 浏览 3 评论 0原文

我想显示自定义 404 页面未找到错误页面(等等)。我正在使用 Spring 3.0,不知道如何执行此操作。我知道我可以在 web.xml 中指定一个 jsp 页面来处理 404 错误。但我想要错误页面的 Spring 环境。所以我尝试简单地返回一个 ModelAndView ,它基本上是一个错误页面。但一旦我这样做,就会出现问题:

response.sendError(HttpServletResponse.SC_NOT_FOUND);

然后整个请求就会转发回容器的默认 404 页面。 Spring 3.0 中我们应该如何处理错误页面?

I want to display a custom 404 page not found error page (among others). I'm using Spring 3.0 and don't know how to do this.. I know I can specify a jsp page in web.xml to handle 404 errors. But I want Spring's environment for my error pages. So I tried simply returning a ModelAndView that's basically an error page. But the problem there is once I do this:

response.sendError(HttpServletResponse.SC_NOT_FOUND);

Then the whole request just gets forwarded back to the container's default 404 page. How are we supposed to handle error pages in Spring 3.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

反话 2024-10-12 19:53:16

在 Servlet 2.4 中,response.sendError()response.setStatus() 的处理方式有所不同。前者由容器处理,但后者提供您自己提供响应的选项。这意味着,您必须使用response.setStatus(HttpServletResponse.SC_NOT_FOUND)。另请参阅 如何在 Spring 中返回 403 Forbidden MVC?

In Servlet 2.4, response.sendError() and response.setStatus() are treated differently. The former is handled by container, but the latter gives option to provide the response yourself. That means, you have to use response.setStatus(HttpServletResponse.SC_NOT_FOUND). Please also see How do I return a 403 Forbidden in Spring MVC?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文