HTTP状态404 - (projectName)/faces/Login.xhtml - 请求的资源不可用

时间:2017-09-16 08:46:53

标签: jsf tomcat8

我正在开发一些软件,但我正面临这个问题

HTTP Status 404 - (projectName)/faces/Login.xhtml - the requested resource not available

在我的办公室笔记本电脑上工作正常,但在我的家用笔记本电脑中,我不知道背后的问题是什么。

我试图清除,一次又一次地重建项目,但问题不会发生。

我的其他项目运行良好。

这是我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>EMSLoginAndAttendanceModule</display-name>
  <welcome-file-list>
    <welcome-file>Login.xhtml</welcome-file>

  </welcome-file-list>
  <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>/faces/*</url-pattern>
  </servlet-mapping>
  <context-param>
    <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
  </context-param>
  <context-param>
    <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
    <param-value>resources.application</param-value>
  </context-param>
  <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>
  <session-config> 
   <session-timeout>45</session-timeout> 
    </session-config>
</web-app>

这是我的Login.xhtml文件

的结构
WebContent
  |_META-INF
  |_WEB-INF
    |_faces-config.xml
    |_web.xml
  |_Login.xhtml 

1 个答案:

答案 0 :(得分:2)

错误原因是libraries中未包含Deployment Assembly,因此在添加错误后问题已解决。

解决错误的步骤:

properties的{​​p> project而不是Deployment Assembly 点击右侧窗格中的Add,然后选择Java Build path Entries

从那里我添加了所有libs并且错误消失了。