When defining a tiles definition or attribute, can you reference another definition or attribute without inheriting?
I have all sorts of JSP fragments, CSS, and JavaScript that would be considered 'common'. They are certainly not needed for every page, and thus inheriting directly doesn't seem like it's going to work.
Example:
<tiles-definitions>
<definition name="currentBodyDefinition" template="[...specific body template...]" extends="Components">
<!-- if it's not already defined within Components, add it here -->
</definition>
<definition name="page" extends="pageTemplate">
<put-attribute name="body" value="currentBodyDefinition" />
<put-attribute name="scripts" value="[...???...]" /> <!-- can I reference another definition(s) or attribute(s) here??? -->
<put-attribute name="styles" value="[...???...]" /> <!-- can I reference another definition(s) or attribute(s) here??? -->
</definition>
</tiles-definitions>