0

我将 JBoss EAP 6.1 与 JSF 2.1.19 一起使用,并将我的主机配置为根上下文中的虚拟服务器。(使用像 /myApp 这样的非根上下文,一切正常)。我试图在使用 Flash 范围重定向后显示 FacesContext 信息消息。出于某种原因,我并没有始终让 Faces 消息显示在第二页上。有时会,有时不会。有时它会显示在第一页上。

这是我的 JSF2 bean:

@ManagedBean
@RequestScoped
public class TestBean {

    public String submit() {
        System.out.println("...adding faces info message....");
        FacesContext.getCurrentInstance().getExternalContext().getFlash().setKeepMessages(true);
        FacesContext.getCurrentInstance().addMessage(null,new FacesMessage("Faces Info Message"));
        return "/second/secondPage?faces-redirect=true";
    }
}

相关firstPage.xhtml:

<h:form>
    <h:commandButton value="ClickMe" action="#{testBean.submit()}"/>
</h:form>

相关的secondPage.xhtml:

<h:body>
    <h:messages id="globalMessages" globalOnly="true"/>
    <h:link outcome="/firstPage" value="Back"/>
</h:body>

JBoss 独立.xml:

<subsystem xmlns="urn:jboss:domain:web:1.4" default-virtual-server="myApp" native="false">
    <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>
    <virtual-server name="myApp" enable-welcome-root="false" default-web-module="myApp">
        <alias name="localhost"/>
    </virtual-server>
</subsystem>

与 myApp 一起打包的 jboss-web.xml:

<jboss-web>
    <context-root>/</context-root>
    <virtual-host>myApp</virtual-host>
</jboss-web>

请帮忙!我完全被这个难住了。

4

1 回答 1

0

原来这是JBoss中的一个错误。在使用根上下文应用程序时,FacesMessages 无法在后重定向获取中正常生存。在此处归档:https ://bugzilla.redhat.com/show_bug.cgi?id=1017242

于 2013-10-14T19:26:08.003 回答