我正在实现一个带有primefaces的登录表单,但我的消息没有显示,可能是什么?
我尝试使用id字段或在方法addMessage()中传递null。
我的xhtml代码:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui">
<h:head>
<title>Test</title>
</h:head>
<h:body>
Wellcome<br/>
<h:form id="login">
<p:messages id="messages" showDetail="true" autoUpdate="true" closable="true" />
<p:growl id="msg" showDetail="true" life="3000" />
<p:panel header="Login" style="width: 360px;">
<h:panelGrid id="loginPanel" columns="2">
<h:outputText value="Email:" for="email" />
<p:inputText id="email" value="#{loginBean.email}" ></p:inputText>
<p:spacer></p:spacer>
<p:message for="email" />
<h:outputText value="Senha" for="senha" />
<p:password id="senha" value="#{loginBean.senha}" feedback="false" minLength="1"></p:password>
<p:spacer></p:spacer>
<p:message for="senha" />
<p:spacer></p:spacer>
<p:commandButton action="#{loginBean.loginAction}" value="Login" update="loginForm" ajax="true"></p:commandButton>
</h:panelGrid>
</p:panel>
</h:form>
</h:body>
</html>
我的豆子:
@ManagedBean
@RequestScoped
public class LoginBean {
private static final long serialVersionUID = 1L;
private String email;
private String senha;
@ManagedProperty(value="#{usuarioSessionBean}")
private UsuarioSessionBean usuarioSessao;
public String loginAction()
{
//Valida preenchimento dos campos de email e senha
boolean campoBranco = false;
if((email == null) || (email.trim().length() == 0))
{
campoBranco = true;
FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_ERROR, "Email não informado!","Preencha o email e tente novamente!"));
}
if((senha == null) || (senha.trim().length() == 0))
{
campoBranco = true;
FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_ERROR, "Senha não informada!","Preencha a senha e tente novamente!"));
}
if(campoBranco)
return "login";
}
}
谁能告诉我有什么问题?他返回登录页面但没有显示消息。
答案 0 :(得分:3)
如果我的知识不正确,您的意思是说您要向用户显示该消息,请尝试以下操作:
if((senha == null) || (senha.trim().length() == 0))
{
campoBranco = true;
FacesContext.getCurrentInstance().addMessage(null,new FacesMessage(FacesMessage.SEVERITY_ERROR, "Senha não informada!","Preencha a senha e tente novamente!"));
return null;
}
这是您必须添加return null;
以便它将保留在同一页面并显示消息的内容,因为您在获取错误后尝试导航到登录页面时,它将会只是导航而不是显示错误消息。
并尝试按照以下建议修改xhtml:
并在你的xhtml中:
<p:growl id="growlLoginValidationStatus" showDetail="true" sticky="false" autoUpdate="true" life="4000" redisplay="false" showSummary="true" globalOnly="false" />
并删除您的<p:message/>
标记,并在命令按钮中将ajax设为false。
尝试这个,如果仍然无法显示消息,请在评论中告诉我
答案 1 :(得分:3)
好像你正在更新错误的ID。
<h:form id="login" >
<p:commandButton value="Login" update="loginForm"
action="#{loginBean.loginAction}"/>
</h:form>
在这种情况下,您需要将loginForm
更改为login
或将表单的id
更改为loginForm
。