如何在Facelets中重用xhtml代码

时间:2016-07-19 10:09:19

标签: jsf jsf-2 facelets

我想知道如何使用Facelets重用xhtml代码。例如,假设我有以下代码(无关紧要,想象任何一段代码):

<p:panel columns="1">
        <h:form id="resolucionForm">
            <div class="info-panel">
                <h:outputText value="#{myBean.expediente.numexpediente} " />
                <h:outputText
                    value="Referencia: #{myBean.tercero.idtercero} | " />
            </div>
            <h:panelGrid columns="1">
                <p:row>
                    <div class="resolucion-actions">
                        <p:commandLink>
                            <h:outputText value="Imprimir" />
                        </p:commandLink>
                    </div>
                </p:row>
            </h:panelGrid>
    </h:form>
</p:panel>

我想在两个不同的文件中使用它(可能更多),避免重复。 那我怎么能在Facelets上做到这一点?

0 个答案:

没有答案