ui:insert 未在主模板中呈现

ui:insert is not rendering in the main template

经过一年的时间间隔,我再次开始在 JSF 中工作并面临 facelets 使用方面的问题下面是 maintemplate.xhtml

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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>
  <title><ui:insert name="title" /></title>
  </h:head>
   <ui:insert name="header" /> 
    <body>

     content
    </body>
</html>

下面是另一个xhtml文件的ui:composition

enter code here
<?xml version="1.0" encoding="UTF-8" ?>
  <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:p="http://primefaces.org/ui"
            template="/index.xhtml">


    <ui:define name="title"><h:outputText value="Please Sign In" /></ui:define>
    <ui:define name="header"><h:outputText value="Please Sign In" /></ui:define>
  </ui:composition>

相同的内容适用于 ui:include 但不适用于 ui:defin 和 ui:insert 组合

我以错误的方式使用了标签,需要在插入内容中包含 include 标签才能获得正确的模板功能