下面的代码显示了只读输入文本框中用户个人资料的一些字段。数据来自bean作为"字段"的ArrayList。对象,其属性在ui:param指令中描述。 用户可以单击该框旁边的解锁/锁定按钮来开始/完成编辑她的数据。 我想在用户在编辑后按Enter键或单击锁定按钮时触发输入验证。
但无论我尝试了什么,在编辑并按下输入或单击按钮后,不会写回更改的值并且不会触发我的自定义验证器。不知怎的,似乎在点击按钮后,然后渲染的输入框没有绑定到该字段?但是,如果在始终呈现的输入文本中使用验证器(并且所有属性都传递给它),并且我不理解它:)
请看一下。如果我没有充分解释我的意图或者您需要更多代码,请告诉我。
编辑:支持bean的注释:
@ManagedBean( name = "beanProfile" )
@RequestScoped
jsf代码:
<ui:composition>
<ui:param name="i18n" value="#{field.i18n}" />
<ui:param name="val" value="#{field.value}" />
<ui:param name="req" value="#{field.required}" />
<ui:param name="min" value="#{field.min}" />
<ui:param name="max" value="#{field.max}" />
<ui:param name="validationType" value="#{field.validationType}" />
<ui:param name="useHidden" value="#{field.hidden}" />
<ui:param name="locked" value="#{field.locked}" />
<ui:param name="fullName" value="#{beanProfile.name}" />
<h:form id="profileFrm">
<h:outputText value="#{msg.role_profile} " styleClass="headingOutputText" />
<h:outputText value="#{fullName}" styleClass="headerTitle" />
<p />
<h:panelGroup>
<ui:repeat var="field" value="#{beanProfile.userFields}">
<h:panelGrid columns="2">
<h:outputText value="#{msg[i18n]}" styleClass="headerTitle" />
<h:message showDetail="true" for="visInput" styleClass="warn"
rendered="#{!useHidden}" />
<h:message showDetail="true" for="invisInput" styleClass="warn"
rendered="#{useHidden}" />
</h:panelGrid>
<h:panelGrid columns="2" columnClasses="nameColumn">
<h:inputText id="visInput" required="true" value="#{val}"
rendered="#{!useHidden}" readonly="#{locked}" >
<f:validator validatorId="customValidator" />
<f:attribute name="requiredField" value="#{req}" />
<f:attribute name="minLen" value="#{min}" />
<f:attribute name="maxLen" value="#{max}" />
<f:attribute name="type" value="#{validationType}" />
</h:inputText>
<h:inputSecret id="invisInput" required="true" value="#{val}"
rendered="#{useHidden}" readonly="#{locked}">
<f:validator validatorId="customValidator" />
<f:attribute name="requiredField" value="#{req}" />
<f:attribute name="minLen" value="#{min}" />
<f:attribute name="maxLen" value="#{max}" />
<f:attribute name="type" value="#{validationType}" />
</h:inputSecret>
<h:commandLink id="lock" action="#{beanProfile.lock(field)}"
rendered="#{!locked}" title="#{msg.profile_lock}">
<h:graphicImage height="16" width="16"
name="images/padlock_unlocked.svg" alt="#{msg.profile_lock}" />
</h:commandLink>
<h:commandLink id="unlock" action="#{beanProfile.unlock(field)}"
rendered="#{locked}" title="#{msg.profile_unlock}">
<h:graphicImage height="16" width="16"
name="images/padlock_locked.svg" alt="#{msg.profile_unlock}" />
</h:commandLink>
</h:panelGrid>
</ui:repeat>
</h:panelGroup>
<p />
<h:commandButton id="submitProfileBtn" value="#{msg.cmd_submit}"
styleClass="button" includeViewParams="true"
action="#{beanProfile.submitProfile()}" />
</h:form>
</ui:composition>
答案 0 :(得分:1)
问题的根源在于您正在使用RequestScoped范围作为包含Model的支持bean,所以当您想要执行回发请求以执行支持bean方法时,绑定就会消失(不在服务器内存)和JSF生命周期没有按预期执行。解决方案是使用更长的范围作为ViewScoped范围。理想情况下,您应该使用兼容CDI的viewScoped范围,因此必须使用JSF 2.2.x版本。
答案 1 :(得分:0)
谢谢lametaweb,你带领我朝着正确的方向前进。
无法使用@ViewScoped注释,我找到了链接
并遵循BalusC在Tomcat中使用CDI的指示。然后我不得不让所有java类实现Serializable接口。
现在我可以使用@ViewScoped注释并触发验证器。