jboss上的web.xml欢迎文件

时间:2012-10-18 11:14:15

标签: java web jboss7.x web.xml

我有ejb和web模块的耳朵应用程序。在web-inf的web模块中,我有这样的web.xml:

 <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>

它不起作用。 JBoss在启动时不显示此页面。怎么解决这个问题?

1 个答案:

答案 0 :(得分:2)

你是否尝试过没有q命名空间的标签?像:

<welcome-file-list>
    <welcome-file>view.xhtml</welcome-file>
</welcome-file-list>