我正在使用 JSF2 和 Glassfish 3.0。
404
我有一个非常简单的应用程序,我正在尝试为错误设置一些默认错误页面500
。
这是WEB.XML
部分:
<error-page>
<exception-type>404</exception-type>
<location>/error.xhtml</location>
</error-page>
<error-page>
<exception-type>500</exception-type>
<location>/error.xhtml</location>
</error-page>
即使存在 error.xhtml,在浏览器中我仍然会收到标准HTTP Status 404 -
警告。