如何在 JSF 2.0 中创建自定义 404 消息?

发布于 2024-12-03 07:52:05 字数 233 浏览 0 评论 0原文

目前在我的应用程序中,当用户在 URL 栏中键入一些非法目的地时,会看到以下内容:

在此处输入图像描述

我想使其更加美观,并使用我自己的标记和一些 CSS 对其进行自定义。

- 我需要在我的应用程序上进行编程还是必须在应用程序服务器中进行配置?

-如果我想这样做,我应该从哪里开始?

Currently in my app when a user types some illegal destination in the URL bar, sees this:

enter image description here

I would like to make it more beautiful and customize it with my own markup and a bit of css.

-Do i need to program that on my app or i have to configure that in the application server?

-Where should i start from if i want to do that?

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

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

发布评论

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

评论(1

刘备忘录 2024-12-10 07:52:06

您可以根据 web.xml 中声明自定义 HTTP 状态代码)或(被抛出的完整限定异常类名,例如javax.faces.application.ViewExpiredException)。

<error-page>
    <error-code>404</error-code>
    <location>/WEB-INF/errorpages/404.xhtml</location>
</error-page>

您可以自由地在 404.xhtml 中填写标记。

You can declare custom <error-page>s in web.xml depending on <error-code> (the HTTP status code) or <exception-type> (the full qualified exception class name which was been thrown, e.g. javax.faces.application.ViewExpiredException).

<error-page>
    <error-code>404</error-code>
    <location>/WEB-INF/errorpages/404.xhtml</location>
</error-page>

You've all freedom to fill in the markup in 404.xhtml.

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