如何创建模板
为一个应用程序设置模板
在/WEB-INF
文件夹下创建一个名为 template.xhtml
的文件,这样模板文件只能用于框架。
/WEB-INF/template.xhtml
<!DOCTYPE html>
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:head>
<title><ui:define name="title">Default title</ui:define></title>
</h:head>
<h:body>
<!-- Some styles that we might include for our whole application -->
<h:outputStylesheet name="css/template.css" />
<!-- Shared content for the application, e.g. a header, this can be an include -->
<div>
Application Header
</div>
<!-- The content we want to define in our template client -->
<div>
<ui:insert name="content" />
</div>
</h:body>
</html>
此文件将充当应用程序的模板。现在我们将在视图目录中定义一个特定的视图。
/home.xhtml
<ui:composition template="/WEB-INF/template.xhtml"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<ui:define name="title">Home</ui:define>
<ui:define name="content">
Welcome to the application!
</ui:define>
</ui:composition>
看看这个客户端视图中的 template
属性,这告诉 JSF 使用我们想要的模板。然后,使用 <ui:define>
,我们定义要插入模板中的特定内容。在客户端访问/home.xhtml
将呈现整个结果。