我只想在发生异常时在错误页面上打印自定义消息。
我试过这个
if(erroroccured){
FacesMessage message=new FacesMessage("You must login to continue");
context.addMessage(null, message);
FacesContext.getCurrentInstance().getExternalContext().redirect("error.xhtml");
}
在error.xhtml我给了
<h:messages></h:messages>
标签也..每当发生异常时我的页面都被完美地重定向。但我没有得到任何错误消息。
Faces消息是请求范围。重定向基本上指示webbrowser发送全新的HTTP请求(这也是您在浏览器地址栏中看到URL被更改的原因)。在新请求中,当前在先前请求中设置的面部消息当然不再可用。
有几种方法可以让它工作:
ExternalContext#dispatch()
来做到这一点
FacesContext.getCurrentInstance().getExternalContext().dispatch("error.xhtml");
或者如果你已经在一个动作方法中,只需按常规方式导航
return "error";
<ui:composition template="/WEB-INF/templates/error.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<ui:define name="message">
You must login to continue.
</ui:define>
</ui:composition>
然后你可以重定向到这个特定的错误页面,就像redirect("error-login.xhtml")
。redirect("error.xhtml?type=login")
,让视图处理它。
<h:outputText value="You must login to continue." rendered="#{param.type == 'login'}" />
externalContext.getFlash().setKeepMessages(true);
然而,Mojarra有一个有点错误的闪存范围实现。对于当前版本,当您需要重定向到其他文件夹时,这将不起作用,但当目标页面位于同一文件夹中时它将起作用。