Tiles in JSF
843844May 10 2007 — edited May 19 2007Hello!!
I'm new in JSF, an I need help because I don't know how integrated JSF with Tiles. Anybody help me with examples or tutorials?
I work with MyEclipse and I made an application web with 'Sun JSF Reference Implementation 1.1.01' and I added struts.jar, struts-faces.jar.
I have 2 jsps, faces-config.xml, web.xml, tiles-defs.xml.
In tiles-defs.xml I have this:
<tiles-definitions>
<definition name="layout" path="/jsp/hello.jsp">
<put name="body" value=""/>
</definition>
<definition name="goodbye" extends="layout">
<put name="body" value="/jsp/goodbye.jsp"/>
</definition>
</tiles-definitions>