How to set Welcome file with struts tiles?
Hello!I use Struts and in the web.xml it is possible to set the welcome file like:
<!-- The Usual Welcome File List -->
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
Now I would like to set the welcome file pointing to a struts tile looking like:
<definition name="tiles.index" page="/tiles/template.jsp">
<put name="header" value="/tiles/header.html" />
<put name="body" value="/tiles/index.jsp" />
<put name="footer" value="/tiles/footer.html" />
</definition>
I have tried to this:
<!-- The Usual Welcome File List -->
<welcome-file-list>
<welcome-file>/tiles/index.do</welcome-file>
</welcome-file-list>
But I do not get it to work, so if you guys got any ideas please let me know!
Best regards
Fredrik