如何重定向到以web.xml
编程方式定义的错误页面?
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.xhtml</location>
</error-page>
我该如何/error.xhtml
通过FacesContext
?
有时异常可能发生在被覆盖的方法中,我无法抛出发生的异常,需要手动处理异常,例如自己重定向到错误页面。
如何重定向到以web.xml
编程方式定义的错误页面?
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.xhtml</location>
</error-page>
我该如何/error.xhtml
通过FacesContext
?
有时异常可能发生在被覆盖的方法中,我无法抛出发生的异常,需要手动处理异常,例如自己重定向到错误页面。