index.html文件出现404错误

时间:2014-01-23 20:27:44

标签: java html http-status-code-404 web.xml file-structure

运行项目时遇到404错误,我的JBoss服务器运行正常。

这是在index.html:

<html>
<body>

<form action="/services/customers" method="post">
First Name: <input type="text" name="firstname"/><br/>
Last Name: <input type="text" name="lastname"/><br/>
<INPUT type="submit" value="Send">
</form>

</body>
</html>

这是web.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<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" version="3.0">
<display-name>SIMS</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Resteasy</servlet-name>
<servlet-class>org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Resteasy</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<context-param>
<param-name>javax.wcs.rs.Application</param-name>
<param-value>org.jboss.samples.webservices.MyRESTApplication</param-value>
</context-param>
<listener>
<listener-class>org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrap</listener-class>
</listener>
<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>
</web-app>

这是我的文件结构:

enter image description here

当我运行此项目时,我收到404错误

http://localhost:8080/SIMS/

我也尝试过:

http://localhost:8080/SIMS/index.html

这也给出了404如何让项目运行的想法?

2 个答案:

答案 0 :(得分:2)

我认为问题是<url-pattern>。 jsf库无法找到您的页面。

尝试将<url-pattern>更改为<url-pattern>*.jsf</url-pattern>

然后将<welcome-file>重命名为index.jsf,并在index.html旁边创建一个空的index.jsf文件。

答案 1 :(得分:1)

尝试只输入localhost并从浏览树中选择您的文件