JSF 2.0 Facelets模板继承



这是对JSF 2.0 Facelets嵌套模板继承的扩展转发,这个问题得到了松散的提问和正式的回答。

这是我的easy_to_earn问题:

template_base.xhml

<html xmlns="http://www.w3.org/1999/xhtml"
            xmlns:h="http://java.sun.com/jsf/html"
            xmlns:ui="http://java.sun.com/jsf/facelets">
<h:head><!-- header stuff --></h:head>
<h:body>
    <!-- Lot of html here -->
    <div id="main">
        <ui:insert name="main_content"/>
    </div>
    <!-- Lot of html here -->
</h:body>
</html>

接下来,我想要另一个模板,form_wrapped.xhtml,它将扩展base_template。html 但是main_content<h:form>包裹:

<div id="main">
    <h:form>
        <!-- "main_content" goes here -->
    </h:form>
</div>

和页面本身:

<ui:composition template="/WEB-INF/templates/form_wrapped.xhtml">
    <ui:define name="main_content">
            <!-- this html is wrapped by form -->
    </ui:define>
</ui:composition>

我该怎么做?

让你的form_wrapped模板如下:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    template="/WEB-INF/templates/main_wrapped.xhtml">
    <ui:define name="main_content">
            <div id="main">
                <h:form>
                    <ui:insert name="form_content" />
                </h:form>
            </div>
    </ui:define>
</ui:composition>

相关内容

  • 没有找到相关文章

最新更新