So I wanted to use an action bean as my welcome page, I could have an index.html do a meta refresh to my Welcome.action but that’s a bit rubbish. So anyway, I had to map the StripesDispatcher directly to a url and include that url in my welcome file list, here is a snippet from my web.xml
<servlet-mapping> <servlet-name>StripesDispatcher</servlet-name> <url-pattern>/Index.action</url-pattern> </servlet-mapping>
<welcome-file-list> <welcome-file>Index.action</welcome-file> </welcome-file-list>
Hope that’s useful to someone !