2

我是 eclipse 的初学者,并尝试从一个 hello world 页面开始的简单 Web 项目。但是当我在 tomcat 服务器上运行项目时,这个 url 被触发并且我得到 HTTP 404 错误:-

http://localhost:8080/TestWeb/

我的 web.xml 文件内容如下:-

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 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>TestWeb</display-name>
   <welcome-file-list>
    <welcome-file>HelloWorld.xhtml</welcome-file>
    <welcome-file>HelloWorld.xhtml</welcome-file>
    <welcome-file>HelloWorld.xhtml</welcome-file>
    <welcome-file>HelloWorld.xhtml</welcome-file>
    <welcome-file>HelloWorld.xhtml</welcome-file>
    <welcome-file>HelloWorld.xhtml</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>FacesServlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>FacesServlet</servlet-name>
    <url-pattern>*.xhtml</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>
</web-app> 
4

1 回答 1

0

您必须检查 的位置HelloWord.xhtml。正如您在您的文章中提到的那样web.xml,如果HelloWord.xhtml是直接下WebContent那么它很好,否则您会看到Error-404

于 2015-04-16T14:28:53.213 回答