3

我最近将 OmniFaces 库引入我的项目以利用其 Ajax 实用程序,但自从这样做后,我的 PrimeFaces 可编辑数据表现在忽略了验证错误。

我目前有带有自定义验证器和过滤器的 ap:datatable,如下所示:

<p:dataTable var="ticket" value="#{myBean.tickets}"
    id="ticketTable" widgetVar="ticketTable" editable="true"
    rowKey="#{ticket.idTicket}"
    filteredValue="#{myBean.filteredTickets}"
    paginator="true" rows="20"
    paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"
    rowsPerPageTemplate="#{myBean.rowsPerPageTemplate}">

    <p:ajax event="rowEdit" listener="#{myBean.onEdit}"
        />
    <p:ajax event="rowEditCancel"
        listener="#{myBean.onCancel}" />


    <p:column headerText="Title" sortBy="#{ticket.title}"
        filterBy="#{ticket.title}">
        <p:cellEditor>
            <f:facet name="output">
                <h:outputText value="#{ticket.title}" />
            </f:facet>
            <f:facet name="input">
                <p:inputText value="#{ticket.title}" />
            </f:facet>
        </p:cellEditor>
    </p:column>

    <p:column sortBy="#{ticket.start}">
        <f:facet name="header">
            <h:panelGrid columns="1">
                <h:outputText value="Start" />
                <h:panelGrid columns="3">
                    <h:outputLabel value="From:" for="filterTripDateFrom" />
                    <p:calendar id="filterTripDateFrom"
                        value="#{myBean.filterStart}" navigator="true"
                        effect="fadeIn" pattern="MM/dd/yy" size="8">
                        <p:ajax event="dateSelect"
                            listener="#{myBean.filterDates()}"
                            update="ticketTable" />
                    </p:calendar>
                    <p:commandButton value="Clear"
                        action="#{myBean.clearStart()}"
                        update="filterTripDateFrom, ticketTable" />
                </h:panelGrid>
            </h:panelGrid>
        </f:facet>
        <p:cellEditor>
            <f:facet name="output">
                <h:outputText value="#{ticket.start}">
                    <f:convertDateTime pattern="EE, MMM dd, yyyy:  HH:mm z" />
                </h:outputText>
            </f:facet>
            <f:facet name="input">
                <p:calendar value="#{ticket.start}" pattern="MM/dd/yy HH:mm"
                    stepMinute="15">
                    <f:validator validatorId="dateValidator" />
                    <f:attribute name="endDate"
                        value="#{editEndDate}" />
                </p:calendar>
            </f:facet>
        </p:cellEditor>
    </p:column>

    <p:column sortBy="#{ticket.end}">
        <f:facet name="header">
            <h:panelGrid columns="1">
                <h:outputText value="End" />
                <h:panelGrid columns="3">
                    <h:outputLabel value="To:" for="filterTripDateTo" />
                    <p:calendar id="filterTripDateTo"
                        value="#{myBean.filterEnd}" navigator="true"
                        effect="fadeIn" pattern="MM/dd/yyyy" size="8">
                        <p:ajax event="dateSelect"
                            listener="#{myBean.filterDates()}"
                            update="ticketTable" />
                    </p:calendar>
                    <p:commandButton value="Clear"
                        action="#{myBean.clearEnd()}"
                        update="filterTripDateTo, ticketTable" />
                </h:panelGrid>
            </h:panelGrid>
        </f:facet>
        <p:cellEditor>
            <f:facet name="output">
                <h:outputText value="#{ticket.end}">
                    <f:convertDateTime pattern="EE, MMM dd, yyyy:  HH:mm z" />
                </h:outputText>
            </f:facet>
            <f:facet name="input">
                <p:calendar value="#{ticket.end}" pattern="MM/dd/yyyy HH:mm"
                    stepMinute="15" binding="#{editEndDate}" />
            </f:facet>
        </p:cellEditor>
    </p:column>
    <p:column headerText="Options" style="width:50px">
        <p:rowEditor />
    </p:column>


</p:dataTable>

添加 OmniFaces 之前的行为是,如果我的自定义日期验证器(如下提供)抛出ValidatorException,则正在编辑的表中的行将保持打开状态,并且页面将显示FacesMessage来自异常的。添加 OmniFaces 库后,FacesMessage仍然显示,但表中的行关闭,好像没有抛出异常一样。我曾尝试使用 OmniFaces 1.2 和 1.3 SNAPSHOT,两者的行为相同。
无论如何要恢复原始功能,还是我必须从我的项目中删除 OmniFaces?

感谢您的帮助

添加信息:Tomcat 7.0;我的脸 2.1;PrimeFaces 3.4.1;OmniFaces 1.3 快照 20121027

我的自定义日期验证器:

public void validate(FacesContext context, UIComponent component,
        Object value) throws ValidatorException
{
    // get the submitted value for the start date
    DateValidator.logger.debug("starting validation");
    Date startDate = (Date) value;

    // get the bound component that contains the end date
    DateValidator.logger.debug("getting UI component");
    UIInput endDateComponent = (UIInput) component.getAttributes().get(
            "endDate");

    // get the value of the bound component
    DateValidator.logger.debug("getting second date");
    String endDateString = (String) endDateComponent.getSubmittedValue();

    // and parse it into a date
    DateValidator.logger.debug("converting date");
    Date endDate = JodaUtils
            .stringToUtil(endDateString, "MM/dd/yyyy HH:mm");


    // if either of the submitted values were empty, let the required tag
    // take care of it
    if (startDate == null || endDate == null)
    {
        DateValidator.logger.debug("a date was null; start: " + startDate
                + "; end: "
                + endDate);
        return;
    }

    // otherwise if the start time is the same as, or before the end time
    else if (startDate.getTime() >= endDate.getTime())
    {
        DateValidator.logger
                .debug("end date was the same as or before start date; start: "
                        + startDate + "; end: " + endDate);

        // set the bound component as invalid
        endDateComponent.setValid(false);

        // update the container containing the components to show that the
        // fields were invalid
        Ajax.update(endDateComponent.getParent().getClientId());

        // and send a notification to the front end
        throw new ValidatorException(new FacesMessage(
                FacesMessage.SEVERITY_ERROR,
                "The end time must be after the start time.",
                "The end time must be after the start time."));
    }
    else
    {
        DateValidator.logger.debug("all clear; start: " + startDate
                + "; end: "
                + endDate);
    }
    Ajax.update(":form:ticketTable");
}
4

1 回答 1

2

我能够重现您的问题。这基本上是由 MyFaces 和OmniPartialResponseWriter. MyFaces 的标准PartialResponseWriter并没有将所有方法委托给getWrapped()方法,而是直接委托给局部wrapped变量。在 Mojarra 中,所有方法都被委托给getWrapped(),因此可以在组件库的特定PartialResponseWriter实现中被覆盖。

您的代码在 Mojarra 中运行良好,但在 MyFacesPartialResponseWriter#getWrapped()中没有调用该方法(OmniFaces 将返回 PrimeFaces 一个),而是wrapped引用了本地实例(如果OmniPartialResponseWriter只有 MyFaces 拥有一个而不是 PrimeFaces 一个)这导致PrimePartialResponseWriterPrimeFaces 被完全跳过。因此,它无法将以下扩展添加到 XML 响应,其中包含 JSF 验证失败的 PrimeFaces ajax 引擎信息。

<extension ln="primefaces" type="args">{"validationFailed":true}</extension>

这是一个相当不幸的问题。此问题已在 OmniFaces 1.3 中修复。解决方案是无论如何都生成一堆PartialResponseWriter委托方法(这破坏了整个包装器设计模式),即使它们不需要实现。

我不确定我是否必须责怪 MyFaces 没有授权getWrapped()PartialResponseWriter文档对此不够明确,但对我来说,这种方法在包装器设计模式中很明显是有意义的。它将使您免于在每个实现中编写/生成一堆委托方法。


与具体问题无关,鉴于您已经在使用 OmniFaces,您也​​可以使用它<o:validateOrder>来代替自定义验证器。

<f:facet name="input">
    <p:calendar id="start" value="#{ticket.start}" pattern="MM/dd/yy HH:mm" stepMinute="15" />
</f:facet>
...
<f:facet name="input">
    <p:calendar id="end" value="#{ticket.end}" pattern="MM/dd/yyyy HH:mm" stepMinute="15" binding="#{editEndDate}" />
    <o:validateOrder components="start end" message="The end time must be after the start time." />
</f:facet>

这基本上就是你所需要的。

至于您Ajax#update()在验证失败时的方法,我不确定您为什么需要这样做,PrimeFaces 已经在验证失败的情况下更新了整行。如果验证成功,您可能希望在后面的方法中调用它#{myBean.onEdit}

于 2012-11-22T01:06:28.653 回答