Google App Engine で struts2 とタイルを使用して Java Web アプリケーションを構築しようとしています。以下は私の tiles.xml ファイルです
<!DOCTYPE tiles-definitions PUBLIC
"-//Apache Software Foundation//DTD Tiles Configuration 2.0//EN"
"http://tiles.apache.org/dtds/tiles-config_2_0.dtd">
<tiles-definitions>
<definition name="baseLayout" template="BaseLayout.jsp">
<put-attribute name="title" value="" />
<put-attribute name="header" value="Header.jsp" />
<put-attribute name="body" value="" />
<put-attribute name="footer" value="Footer.jsp" />
</definition>
<definition name="/welcome.tiles" extends="baseLayout">
<put-attribute name="title" value="Welcome" />
<put-attribute name="body" value="Welcome.jsp" />
</definition>
</tiles-definitions>
しかし、アプリを実行してもエラーは発生しません。「Header.jsp Welcome.jsp Footer.jsp」を出力するだけです。実際の jsp ページは表示されません。何をする必要があるかアドバイスをお願いします。
前もって感謝します
よろしく