最近我将我的应用程序更新到JSF 2.1.7和PrimeFaces 3.4.2。当以下对话框用于添加新组时,在保存新组之前,我得到“名称大小必须在1到40之间”验证错误。当我点击选择器的添加按钮时会发生这种情况。我知道显示此消息是因为验证失败。将immediate=true
添加到p:commandButton时,不会出现验证错误。我不知道是什么触发了验证。
<h:form id="formg" prependId="false">
<!-- messages -->
<p:growl id="msgsg" showDetail="true" />
<!-- data table -->
<ui:include src="/WEB-INF/flows/groupsTable.xhtml" />
<p:separator />
<!-- bottom tool bar -->
<ui:include src="/WEB-INF/flows/groupsToolBar.xhtml" />
<!-- preview, edit dialog -->
<ui:include src="/WEB-INF/flows/groupsDialog.xhtml" />
</h:form>
<p:dialog id="dialogg" header="#{groupsBean.dialogTitle}"
widgetVar="groupsDialog" dynamic="true" resizable="false" width="800"
height="600" showEffect="fade" hideEffect="fade" modal="true">
<p:ajax event="close" listener="#{groupsBean.refresh}"
immediate="true" update=":formg" global="false" process="@this" />
<p:tabView id="tabPicker">
<p:tab title="General">
<h:panelGrid id="displayg" columns="2">
<h:outputText value="#Group name*:" />
<p:inputText value="#{groupsBean.selectedGroup.name}" size="40"
readonly="#{!groupsBean.updatable}" maxlength="40" />
</h:panelGrid>
</p:tab>
<p:tab title="Members">
<ui:include src="/WEB-INF/custom/picker.xhtml">
... some params passed to picker
</ui:include>
</p:tab>
</p:tabView>
</p:dialog>
选择器类似于<p:password>
,它由两个p:dataTable组件和它们之间的4个按钮组成。这些按钮与h:panelGrid组合在一起。按钮属性类似。这是按钮示例代码:
<p:outputPanel autoUpdate="true">
<p:commandButton actionListener="#{eval.evaluateAsMethod(pickerAdd)}"
update="source, target, #{messages}" immediate="true"
disabled="#{pickerSourceDisabled}"
icon="ui-icon ui-icon-arrowthick-1-s" />
</p:outputPanel>
source , target 是两个数据表的ID。 pickerAdd 作为参数传递,值为groupsBean.picker.add
。这些表包含FooDomain对象。
public class FooDomain implements Serializable {
...
@NotNull
@Size(min = 1, max = 40)
@Column(name = "NAME")
private String name;
...
}
答案 0 :(得分:5)
PrimeFaces <p:commandButton>
默认处理整个表单(如process="@form"
),因此默认情况下会触发所有验证。您的验证错误来自对该属性的@Size
限制。如果您只想处理按钮自己的操作,则应添加process="@this"
。
<p:commandButton ... process="@this" />
immediate="true"
也可用于解决它,但它的行为有些不同:整个表单仍在处理中,但是在APPLY_REQUEST_VALUES阶段而不是INVOKE_ACTION阶段调用该操作。只有也设置了immediate="true"
的输入组件也将被处理,其他组件将被跳过。