Boa noite galera, estou desenvolvendo um projeto onde uso as tecnologias: JSF, Primefaces com Facelets e estou com problema ao fazer o include de uma pagina.xhtml em uma outra página que contem uma tabview, ao fazer o include a aba da tabView fica em branco e os dados da pagina.xhtml não aparecem.
Minha tabview
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
template="/WEB-INF/templates/Layout.xhtml">
<p:tabView>
<p:tab title="Informações ">
<ui:include src="minha-página.xhtml" />
</p:tab>
</tabView>
</ui:define>
</ui:composition>
**Minha pagin.xhtml**
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
template="/WEB-INF/templates/Layout.xhtml">
<ui:define name="content">
<h:form id="frm">
//componentes do form
</h:form>
</ui:define>
</ui:composition>
Já verifiquei o caminho e está correto, mas os dados da página não aparecem, o que poderia ser?