Struts 1 で Tiles2 を使用することは可能ですか?
移行ガイドhttp://tiles.apache.org/migration/index.htmlで利用可能な指示に従いました
しかし、自分のアクションにアクセスしようとすると、次のエラーが発生します。
org.apache.tiles.template.NoSuchAttributeException: Attribute 'body' not found.
私はstruts-config.xmlに持っています:
<controller processorClass="org.apache.struts.tiles.TilesRequestProcessor"
maxFileSize="10M" tempDir="/tmp" />
<plug-in className="org.apache.struts.tiles.TilesPlugin">
<set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
</plug-in>
そして 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>