フィールド (id="nome") のフォーカスを失うことにより、メソッド (listener="#{loginMb.criticaCamposTela}") が実行されますが、属性値 (value="#{loginMb.usuario.nome}") は実行されません。マネージド Bean で更新され、値は null です。バリデーションに入力した値と一緒にあってはいけませんか?なぜヌルなのですか?
コードに従ってください。
ページ:
<h:outputText value="Nome:" />
<p:inputText id="nome" value="#{loginMb.usuario.nome}"
required="true" size="20" requiredMessage="Informação do nome é obrigatório.">
<p:ajax event="blur" update="idMsgNome, nome" partialSubmit="treu" process="@this"
immediate="true" listener="#{loginMb.criticaCamposTela}"></p:ajax>
</p:inputText>
<h:outputText id="idMsgNome" value="#{loginMb.criticaNome.value}" />
ManagedBean LoginMb:
public void criticaCamposTela(AjaxBehaviorEvent actionEvent) {
String idComponenteTela = actionEvent.getComponent().getId();
if (idComponenteTela.equals("nome")) {
if ((this.usuario.getNome() == null)
|| ((this.usuario.getNome() != null) && (this.usuario
.getNome().trim().length() == 0))) {
this.criticaNome.setValue(new String(
"O nome é um campo obrigatório."));
} else {
this.criticaNome.setValue(new String(""));
}}
web.xml:
<context-param>
<param-name>primefaces.SUBMIT</param-name>
<param-value>partial</param-value>
</context-param>