我有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在启动时不显示此页面。怎么解决这个问题?
答案 0 :(得分:2)
你是否尝试过没有q命名空间的标签?像:
<welcome-file-list>
<welcome-file>view.xhtml</welcome-file>
</welcome-file-list>