我正试图从作文中调用我的作品,但没有任何反应。知道为什么吗?
首先来自模板:
<div id="content">
<ui:insert name="example" />
</div>
现在合成调用合成:
<ui:composition template="/template.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<ui:define name="example">
<ui:include src="/PathToOtherComposition.xhtml"/>
</ui:define>
</ui:composition>