如何捕获 FacesFileNotFoundException?

发布于 2024-10-20 13:30:47 字数 980 浏览 4 评论 0原文

我怎样才能抓住一个

com.sun.faces.context.FacesFileNotFoundException

Java EE Web 应用程序中的

?我尝试在 web.xml 文件中添加以下几行,但没有成功:

  ...
  <error-page>
    <error-code>404</error-code>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <error-code>500</error-code>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FacesFileNotFoundException</exception-type>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FileNotFoundException</exception-type>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FailingHttpStatusCodeException</exception-type>
    <location>/404.jsf</location>
  </error-page>
</web-app>

How can I catch a

com.sun.faces.context.FacesFileNotFoundException

in a Java EE web application?

I tried it with adding the following lines in my web.xml file but I was not successful:

  ...
  <error-page>
    <error-code>404</error-code>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <error-code>500</error-code>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FacesFileNotFoundException</exception-type>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FileNotFoundException</exception-type>
    <location>/404.jsf</location>
  </error-page>
  <error-page>
    <exception-type>FailingHttpStatusCodeException</exception-type>
    <location>/404.jsf</location>
  </error-page>
</web-app>

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

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

发布评论

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

评论(1

无人问我粥可暖 2024-10-27 13:30:47

您需要指定 FQN(完整限定名称),而不仅仅是 N 作为异常类型。

<exception-type>com.sun.faces.context.FacesFileNotFoundException</exception-type>

或者,如果您已经使用 OmniFaces,请注册其 FacesExceptionFilter ,然后 FacesFileNotFoundException 将被处理为 404。

You need to specify the FQN (Full Qualified Name), not just the N as exception type.

<exception-type>com.sun.faces.context.FacesFileNotFoundException</exception-type>

Alternatively, if you already happen to use OmniFaces, register its FacesExceptionFilter and then the FacesFileNotFoundException will be handled as 404.

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