<h:消息> 不显示人脸上下文消息



我有ErrorPage.jsp,其中我有

<h:messages styleClass="messageError" id="messages1"></h:messages>

当后台bean构造函数中出现异常时,我捕获它并执行以下操作

public constructorxxx throws Exception{
    // code 
// code 
// code
catch(Exception e){
try{
        LOG.error(e);
        String customMessage = "An Unknown Error At " + e.getStackTrace()[0].toString() +  "at" + message;
        getFacesContext().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, 
                customMessage, null));
throw new Exception();
                }catch (IOException exception){   
            LOG.error(exception);   
    } 
}
} // end of constructor
在我的Web.xml中的

我使用了以下标记。

<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/ErrorPage.jsp</location>    

当我这样做时,我得到以下错误

1) Uncaught service() exception root cause Faces Servlet: javax.servlet.ServletException
2) An exception was thrown by one of the service methods of the servlet [/sc00/ErrorPage.jsp] in application [MembershipEligibilityScreensEAR]. Exception created : [java.lang.RuntimeException: FacesContext not found.
and in my page it displays as
SRVE0260E: The server cannot use the error page specified for your application to handle the Original Exception printed below.
Error Message: javax.servlet.ServletException
Error Code: 500
Target Servlet: Faces Servlet
Error Stack: 
java.lang.Exception 
// stack trace

Error Message: java.lang.RuntimeException: FacesContext not found
Error Code: 0
Target Servlet: 
Error Stack: 
java.lang.RuntimeException: FacesContext not found 

很多人要求我把ErrorPage.jsp的位置改为/sc00/ErrorPage。面,但它显示了一个坏链接警告在我的web.xml和错误是网页不能显示和编程错误。

我使用jsf 1.2,我的"ErrorPage.jsp"没有支持bean。

谁能告诉我为什么Error.jsp不被显示?

Faces消息具有请求作用域,因此它们具有与当前HTTP请求-响应周期相同的生命周期。然而,你是在指示网络浏览器通过发送重定向来创建一个新的HTTP请求。faces消息不再存在于新的HTTP请求中。

您最好抛出一个异常,并通过web.xml中的<error-page>条目将特定的错误页面与特定的异常关联起来。servletcontainer将自动转发到同一请求中的特定错误页面。

getFacesContext().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, customMessage, null));
throw new SomeException();

<error-page>
    <exception-type>com.example.SomeException</exception-type>
    <location>/sc00/ErrorPage.faces</location>
</error-page>

但是考虑到您的特定容器和JSF impl/版本显然不能转发到基于JSF的错误页面(它是在无限循环中运行吗?),那么您最好的选择是从错误页面中删除所有JSF组件(否则您将得到RuntimeException: FacesContext not found),并使其成为一个真正普通的只有HTML和JSTL的JSP页面。

<error-page>
    <exception-type>com.example.SomeException</exception-type>
    <location>/sc00/ErrorPage.jsp</location>
</error-page>

你应该只把消息放在异常本身中,而不是添加as faces消息。

throw new SomeException(customMessage);

然后,您可以在错误页面中显示如下:

${requestScope['javax.servlet.error.message']}

你甚至可以让异常去(即只是重新声明它为throws in action方法)。

public void doSomething() throws SomeException {
    // ...
}

相关内容

  • 没有找到相关文章

最新更新