在我之前 的问题中,我遇到了从登录表单显示验证消息的问题。该问题现已解决,但这次我无法使用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 不与任何特定组件实例关联
但我不明白这是什么意思。