I'm using Tiles 3 with Spring MVC 3.2. Following is the code
<tiles-definitions>
<definition name="base.definition" template="/pages/Layout/Layout.jsp">
<put-attribute name="title" value="Setting Title" />
<put-attribute name="body" value="" />
<put-attribute name="footer" value="/pages/Layout/Footer.jsp" />
</definition>
<definition name="*" extends="base.definition">
<put-attribute name="body" value="/pages/{1}.jsp" />
</definition>
</tiles-definitions>
By using the above code I could get same structure to multiple pages. But just wondering if I could set title for each page without writing different definitions in tiles.xml. In such a case can I directly control title from Content page?