Reputation:
I have ear app with ejb and web modules. In web module in web-inf I have web.xml like this:
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>view.xhtml</welcome-file>
</welcome-file-list>
And it does not work. JBoss don't show this page on startup. How to solve this?
Upvotes: 0
Views: 2957
Reputation: 13262
Have you tried the tag without the q namespace? like:
<welcome-file-list>
<welcome-file>view.xhtml</welcome-file>
</welcome-file-list>
Upvotes: 1