0

我有带有 ejb 和 web 模块的 ear 应用程序。在 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 在启动时不显示此页面。如何解决这个问题?

4

1 回答 1

2

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

<welcome-file-list>
    <welcome-file>view.xhtml</welcome-file>
</welcome-file-list>
于 2012-10-18T11:17:28.130 回答