1

以下は私のXHTMLコードです。preRenderViewイベントリスナーが無視され、目的のメソッドが呼び出されません。使用されているテンプレートのせいだと思いますが、正確なことはわかりません。助けてください

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://xmlns.jcp.org/jsf/html"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:p="http://primefaces.org/ui"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:c="http://java.sun.com/jsp/jstl/core"
      xmlns:corejsf="http://corejsf.com"
      xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
      xmlns:snw="http://jsf.switchNwalk.com">

    <h:body>
        <ui:decorate template="/template/common/commonLayout.xhtml">
            <ui:define name="content">
                <h:form>
                    <section class="box">
                        <h:outputStylesheet name="assets/css/consumer.css"/>
                        <div class="row-fluid" >
                            <div class="span7" style=""><span class="heading">Consumer Offers</span></div>
                        </div>
                        <div class="row-fluid main_container">
                            <div class="span12 main_container_info">
                                <div class="cosumer_offers">
                                    <h:commandButton class="btn btn_upload"
                                                     style=""
                                                     value="Create Consumer Offer"
                                                     action="#{partnerCreateOffer.createOffer()}">
                                    </h:commandButton>
                                </div>

                                <h:dataTable value="#{partnerGetOffers.getOffers()}" var="offers">
                                    <h:column>
                                        <f:facet name="header">Consumer Offer</f:facet>
                                            #{offers.offerText}
                                    </h:column>
                                    <h:column>
                                        <f:facet name="header">Start Date</f:facet>
                                            #{offers.startDate}
                                    </h:column>
                                    <h:column>
                                        <f:facet name="header">End Date</f:facet>
                                            #{offers.offerText}
                                    </h:column>
                                    <h:column>
                                        <f:facet name="header">Status</f:facet>
                                            #{offers.status}
                                    </h:column>

                                    <h:column>
                                        <f:facet name="header">Modify</f:facet>
                                            #{offers.modify}
                                    </h:column>
                                </h:dataTable>
                            </div>
                        </div>
                    </section>
                </h:form>
            </ui:define>
        </ui:decorate>
        <f:event type="preRenderView" listener="#{partnerGetOffers.testmethod}" />
    </h:body>
</html>

バッキングビーン簡易試験方法:

public void testmethod() {
    System.out.println("listenrersuccess");
}   
4

1 に答える 1