/ / JSF 2.0 Facelets-Vorlagenvererbung - java, jsf, jsf-2

JSF 2.0 Facelets Vorlage Vererbung - Java, JSF, JSF-2

Dies ist eine erweiterte Wiederholung von Vererbung von verschachtelten Vorlagen für JSF 2.0 Facelets, die lose gefragt und formell beantwortet wurde.

Hier ist meine easy_to_earn-Frage:

template_base.xhml

<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><!-- header stuff --></h:head>
<h:body>
<!-- Lot of html here -->
<div id="main">
<ui:insert name="main_content"/>
</div>
<!-- Lot of html here -->
</h:body>
</html>

Als nächstes möchte ich eine andere Vorlage, form_wrapped.xhtml, was würde erweitern base_template.xhml aber mit main_content verpackt von <h:form>:

<div id="main">
<h:form>
<!-- "main_content" goes here -->
</h:form>
</div>

Und die Seite selbst:

<ui:composition template="/WEB-INF/templates/form_wrapped.xhtml">
<ui:define name="main_content">
<!-- this html is wrapped by form -->
</ui:define>
</ui:composition>

Wie mache ich das?

Antworten:

2 für die Antwort № 1

Mach dein form_wrapped Vorlage wie folgt:

<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="/WEB-INF/templates/main_wrapped.xhtml">

<ui:define name="main_content">
<div id="main">
<h:form>
<ui:insert name="form_content" />
</h:form>
</div>
</ui:define>

</ui:composition>