É possivel usar o Tiles2 com o Struts 1?
Eu segui as instruções da página http://tiles.apache.org/migration/index.html
Mas quando eu tento acessar minhas actions, recebo esse erro:
org.apache.tiles.template.NoSuchAttributeException: Attribute 'body' not found.
Meu struts-config.xml:
[code]
[/code]tiles-defs.xml
<definition name="mainTemplate" template="/common/templates/mainTemplate.jsp" />
<definition name="index" extends="mainTemplate">
<put-attribute name="body" type="string" value="/views/index/index.jsp" />
</definition>