如何在 JSF 2.0 中创建自定义 404 消息?
目前在我的应用程序中,当用户在 URL 栏中键入一些非法目的地时,会看到以下内容:
我想使其更加美观,并使用我自己的标记和一些 CSS 对其进行自定义。
- 我需要在我的应用程序上进行编程还是必须在应用程序服务器中进行配置?
-如果我想这样做,我应该从哪里开始?
Currently in my app when a user types some illegal destination in the URL bar, sees this:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以根据
在web.xml
中声明自定义
(HTTP 状态代码)或
(被抛出的完整限定异常类名,例如javax.faces.application.ViewExpiredException
)。
您可以自由地在
404.xhtml
中填写标记。You can declare custom
<error-page>
s inweb.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
).You've all freedom to fill in the markup in
404.xhtml
.