user1679671
user1679671

Reputation:

web.xml welcome file on jboss

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

Answers (1)

dan
dan

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

Related Questions