5

在我之前 的问题中,我遇到了从登录表单显示验证消息的问题。该问题现已解决,但这次我无法使用FacesContex#addMessage.

使用 JSF + PrimeFaces。

<p:dialog header="Login" widgetVar="loginDlg">
    <h:form id="loginForm">
        <h:panelGrid columns="3" cellpadding="5">
            <h:outputLabel for="username" value="Username:" />
            <p:inputText value="#{loginBean.username}" id="username" required="true" label="username" />
            <p:message for="username" />
            <h:outputLabel for="password" value="Password:" />
            <h:inputSecret value="#{loginBean.password}" id="password" required="true" label="password" />
            <p:message for="password" />
            <f:facet name="footer">
                <p:commandButton value="Login" id="loginDlgButton" update=":loginForm,:welcomeMsg" actionListener="#{loginBean.login}"
                                    oncomplete="handleLoginRequest(xhr, status, args)"/>
                <p:message for="loginDlgButton" />
            </f:facet>
        </h:panelGrid>
    </h:form>
</p:dialog>

LoginBean (a SessionScoped ManagedBean) 中:

public void login() {
    FacesContext context = FacesContext.getCurrentInstance(); 
    RequestContext rContext = RequestContext.getCurrentInstance();
    HttpServletRequest request = (HttpServletRequest) context.getExternalContext().getRequest(); 
    try { 
        request.login(this.username, this.password); 
        rContext.addCallbackParam("loggedIn", true);
    } catch (ServletException e) { 
        rContext.addCallbackParam("loggedIn", false);
        context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_WARN, "Login Error", "Invalid credentials")); 
    } 
}

当验证成功并且登录失败时,此代码应显示“无效凭据”消息,但不显示。此外,在我的网页正文的某处,我还添加了这一行:

<p:messages autoUpdate="true" />

但我的消息甚至没有显示在那里。

Javadocs这么说

如果 clientId 为 null,则假定此 FacesMessage 不与任何特定组件实例关联

但我不明白这是什么意思。

4

2 回答 2

5

放置<p:messages autoUpdate="true" />在您的或由您的 commandButtonform更新的一些包装器中,或放置而不是updateloginDlgButtonnullcontext.addMessage(...

于 2012-05-01T13:04:09.070 回答
3

我在您的代码中没有看到 ap:messages 标记。它与 p:message 标记不同。p:message 附加到另一个组件并显示为验证的一部分。p:messages(或 p:growl)组件是您在 bean 中更新的内容。尝试像这样添加消息或咆哮组件:

<h:form id="loginForm">
<p:growl id="messageGrowl" showDetail="true" sticky="false" />
<h:panelGrid columns="3" cellpadding="5">
于 2012-05-01T12:48:49.187 回答