So far I've had some success using JspTilesViewHandlerImpl but I think
I might be running into a problem.  I'd like to use a series of
"nested" tiles.  See my sample tiles-defnitions.xml below ...

  <definition name="simple.view" path="/jsp/layouts/simple-layout.jsp">
    <put name="header" value="/jsp/header.jsp" />
    <put name="status" value="/jsp/version.jsp" />
    <put name="main" value="document.view" />
  </definition>

  <definition name="document.view" path="/jsp/layouts/document-layout.jsp">
    <put name="summarySection" value="/jsp/sections/summary-section.jsp" />
    <put name="detailSection" value="/jsp/sections/detail-section.jsp" />
  </definition>

Basically, the "main" section of my one tile refers to another tile. 
I'm having problems getting this working.  Should this be possible
with JspTilesViewHandlerImpl?  Does is matter if the pages contained
in the secondary view contain faces tags or not?

Thanks,
sean

Reply via email to