/ / ui: Insert wird nicht durch ui ersetzt: define - xml, jsf-2, include, facelets

ui: Einfügen wird nicht durch ui ersetzt: define - xml, jsf-2, include, facelets

Ich erstelle eine JSF-Vorlage, um einem Layout in meiner Anwendung zu folgen ... also habe ich diese Seite layout.xhtml erstellt.

<?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://java.sun.com/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html">

<h:head>
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
</h:head>
<h:body>
<f:loadBundle basename="mensagens.mensagens_pt_BR" var="msgs" />
<ui:composition>
<div id="page">
<div id="header-container">
<div id="nomeSistema">#{msgs.outNomeSistema}</div>
</div>
<div id="menu-login-container">
<div id="menu"
style="width: 850px; height: 30px; border: solid 1px; padding: 15px;">
<ui:include src="/menu/menu.xhtml" />
</div>
<div id="login">
<ui:include src="/login/login.xhtml" />
</div>
</div>
<div id="content-container">
<div id="content">
<ui:insert name="content">
<h2>Default content</h2>
</ui:insert>
</div>
</div>
<div id="footer-container">
<div id="footer">
<h:outputText value="#{msg.versao}" />
</div>
</div>
</div>
</ui:composition>
</h:body>
</html>

Und hier ist die comum.xhtml

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets" template="layout.xhtml">
<ui:define name="content">
<h2>Testando template...</h2>
</ui:define>
</ui:composition>

aber wenn ich auf die comum.xhtml-Seite in meinem Browser zugreife. Der Text Standardinhalt ist Show, nicht Testando-Vorlage ....

Was mache ich falsch?

Antworten:

1 für die Antwort № 1

Ich habe es gefunden!

auf html Markierung von layout.xhtml Ich habe es geändert

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html">

zu

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets">

und jetzt funktioniert es.