У меня есть два клиента шаблона Facelets, во-первых, это файл index.xhtml. Файл индекса успешно загрузил мой шаблон, но когда я пытаюсь загрузить второй клиент Facelets, он не может загрузить мой шаблон.
Код шаблона
<?xml version='1.0' encoding='UTF-8' ?>
<!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://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<h:outputStylesheet library="css" name="default.css"/>
<h:outputStylesheet library="css" name="cssLayout.css"/>
<h:outputStylesheet library="css" name="styles.css"/>
<title>#{faceletsAuthorController.storeName}</title>
</h:head>
<h:body>
<div id="top">
<h2>#{faceletsAuthorController.storeName}</h2>
</div>
<div>
<div id="left">
<h:form id="navForm">
<h:commandLink action="#{faceletsAuthorController.populateJavaRecipesAuthorList}">Java 7 Recipes</h:commandLink>
<br/>
<h:graphicImage id="javarecipes" style="width: 100px; height: 120px" library="image" name="java7recipes.png"/>
<br/>
<h:commandLink action="#{faceletsAuthorController.populateJavaEERecipesAuthorList}">Java EE 7 Recipes</h:commandLink>
<br/>
<h:graphicImage id="javaeerecipes" style="width: 100px; height: 120px" library="image" name="javaee7recipes.png"/>
</h:form>
</div>
<div id="content" class="left_content">
<ui:insert name="content">Content</ui:insert>
</div>
</div>
<div id="bottom" style="position: absolute;width: 100%;bottom: 20px;">
Written by Josh Juneau, Apress Author
</div>
</h:body>
</html>
index.xhtml Клиент Facelets
example04_01a.xhtml Второй шаблон Faceletes (этот не загружает шаблон)
<?xml version='1.0' encoding='UTF-8' ?>
<!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:f="http://xmlns.jcp.org/jsf/core"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<h:body>
<ui:composition template="view/layout/custom_template.xhtml">
<ui:define name="top"></ui:define>
<ui:define name="left"></ui:define>
<ui:define name="content">
<h:form id="componentForm">
<h1>Author List for Java 7 Recipes</h1>
<p>
Below is the list of authors. Click on the author's last name
for more information regarding the author.
</p>
<h:graphicImage id="javarecipes" style="width: 100px; height: 120px" library="image" name="java7recipes.png"/>
<br/>
<h:dataTable id="authorTable" border="1" value="#{faceletsAuthorController.authorList}"
var="author">
<f:facet name="header">
Java 7 Recipes Authors
</f:facet>
<h:column>
<h:commandLink id="authorName" action="#{faceletsAuthorController.displayAuthor(author.last)}"
value="#{author.first} #{author.last}"/>
</h:column>
</h:dataTable>
<br/>
<br/>
</h:form>
</ui:define>
<ui:define name="bottom"></ui:define>
</ui:composition>
</h:body>
</html>
Когда я запускаю проект, я вижу файл index.xhtml в полностью загруженной области содержимого или основной зоны, но когда я щелкаю один элемент, я вижу вторую страницу, но без загруженного шаблона.
Спасибо заранее за любую помощь.