我有jsf 2.1動態web應用程序設置爲jboss as 7.1.1運行時。我無法看到我的歡迎頁面,甚至沒有在瀏覽器中輸入頁面的名稱。我讀了很多類似的問題,但沒有任何工作適合我。這很奇怪,因爲它以前工作過。在我將項目導入不同的工作空間後,什麼也沒有。沒有錯誤。這裏是web.xml:jsf2.1應用程序部署在jboss上後,歡迎頁面不顯示爲7.1.1
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>JPAWEB</display-name>
<welcome-file-list>
<welcome-file>home.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.faces.DEFAULT_SUFFIX</param-name>
<param-value>.xhtml</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>
</web-app>
我的確在webContent下有home.xhtml。
在瀏覽器中,我得到http://www.localhost.com:8080/jpa/,但在本地主機上找不到服務器,即使我把http://www.localhost.com:8080/jpa/home.xhtml。
只是說,服務器正在工作,我可以打開控制檯和歡迎頁面。
那麼,有什麼想法?一切似乎沒問題,但...幫助:)