JSF / Primefaces:ui:在ui中插入:include

时间:2014-10-07 15:29:12

标签: jsf jsf-2 primefaces insert include

我想使用ui:insert / ui:define来替换模板文件中的一些内容。在模板文件中有一个包含另一个文件,在这个文件中是ui:insert

ui:define在这种情况下不起作用。但是,如果footer.xhtml文件的代码包含在template.xhtml中,则ui:define工作正常。

是否无法使用ui:insert / ui:在ui中定义:include?

所引用:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:sec="http://www.springframework.org/security/facelets/tags"
      xmlns:debug="http://XYZ/jsf/debug"
      xmlns:util="http://XYZ/ibk/util"
      xmlns:p="http://primefaces.org/ui">

    <h:body >

        <f:view>
            <div id="headerWrapper">
                <!-- META-NAVIGATION -->
                <div id="metanavWrapper"  >
                    <div class="ui-helper-clearfix pagewidth" >
                        <ui:include src="metanav.xhtml" />
                    </div>
                </div>

            </div>

            <div id="contentWrapper" >
                <!--div id="content" class="pagewidth"-->
                <div id="content">
                    <div id="contentMenuLeft">
                        <ui:include src="navigationMenu.xhtml" />
                    </div>
                    <div id="contentDisplay">
                        <ui:insert name="content" />
                        <ui:insert name="help" />

                    </div>
                </div>
            </div>

            <util:footer />

        </f:view>

        <ui:insert name="dialog"/>

    </h:body>
</html>

-

<util:footer /> 

也可以写成ui:include,结果相同......

footer.xhtml:

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:ui="http://java.sun.com/jsf/facelets"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:sec="http://www.springframework.org/security/facelets/tags"
                xmlns:p="http://primefaces.org/ui"
                >

   <div id="footerWrapper">
      <f:subview id="footerWrapper">


         <h:panelGroup id="footer" >
            <div >

               <ui:insert name="replace" />

            </div>
         </h:panelGroup>
      </f:subview>


   </div>



</ui:composition>

another.xhtml :(摘要)

<ui:composition template="template.xhtml">
  <ui:define name="replace">         
    <h:panelGroup>
       <div>
          <p:outputLabel value="test"/>
       </div>
    </h:panelGroup>
  </ui:define>
</ui:composition>

2 个答案:

答案 0 :(得分:2)

解决方案是将footer.xhtml包含在template.xhtml中

<ui:decorate template="footer.xhtml" />

然后插入/定义正在工作!

此处有更多信息:What is the real conceptual difference between ui:decorate and ui:include?

答案 1 :(得分:0)

如果我做对了,你的<ui:define name="replace">将永远不会在没有页脚的情况下工作,因为相应的<ui:insert name="replace" />在其中,并且仅在包含页脚时才存在。没有插入,没有定义。

当您调用another.xhtml(或具有template="..."的任何其他网站)时,编译器将首先汇总所有include,然后在这些位置添加所有define ed代码相应的insert - 标签。