The question is how can I override an attribute in tiles child template.
I've got two templates: base and child. This is a part of base layout - HTML head:
<title>
<tiles:insertAttribute name="title" />
lyricsBase: <c:out value="${jukebox.name}" />
</title>
This is my tiles.xml:
<definition name="t.base" template="/WEB-INF/tiles/base.jsp">
<put-attribute name="title" value="SomeTitle"/>
</definition>
[...]
<definition name="t.song" extends="t.base">
<put-attribute name="body" value="/WEB-INF/jsp/song.jsp"/>
<put-attribute name="title" value="song.title"/>
</definition>
When I run my page, I get following HTML title: song.title lyricsBase: xxx. What code should I put into the child view to override the title attribute? I'm trying to make it ${song.title}, for example
<tiles:putAttribute name="title" value="${song.title}" />
...but it doesn't work. Thanks for any help!
