为什么我的JSF应用程序不显示上下文消息?

时间:2016-07-12 22:09:38

标签: jsf redirect message

我正在使用Prime Faces,我希望用户在索引页面中启动,按下按钮以调用函数(registrarUsuario)以重新加载索引页面并显示上下文消息。我的问题是我的应用程序没有显示消息。 这是我的代码:

的index.xhtml:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:p="http://primefaces.org/ui"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:b="http://bootsfaces.net/ui">
...
<h:form>
    <b:commandButton action = "#{registroUsuario.registrarUsuario}" value = "call function"/>
</h:form>
....

RegistroUsuario.java:

public void registrarUsuario() throws IOException, Exception {
    try {
        //another code
        FacesMessage message = new FacesMessage(":D", "message");
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, message);
    } catch (Exception e) {
        FacesMessage message = new FacesMessage("Falla", e.toString());
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, message);
    }finally{
        FacesContext.getCurrentInstance().getExternalContext().redirect("index.xhtml");
    }

}

谢谢!

2 个答案:

答案 0 :(得分:0)

这是因为Primefaces不会通过重定向保留消息。

应对此问题的一种可能性是添加一个过滤器,在重定向之后将所有未呈现的消息传递给它。这个答案提供了一个解决方案:Show success message and then redirect to another page after a timeout using PageFlow

答案 1 :(得分:0)

因为根据文档PrimeButton showcase,默认情况下按钮是Ajax,所以你需要将更新参数放在你想要更新的视图中,或者添加参数ajax =&#34; false&#34 ;

 <p:commandButton value="Ajax Submit" id="ajax" update="growl" actionListener="#{buttonView.buttonAction}" styleClass="ui-priority-primary" />
 <p:commandButton value="Non-Ajax Submit" id="nonAjax" actionListener="#{buttonView.buttonAction}" ajax="false" />

注意第一个选项如何具有更新属性,或者第二个选项具有 ajax =&#34; false&#34;