2014-01-23 6 views
1

프로젝트를 실행하면 404 오류가 발생하고 JBoss 서버가 정상적으로 실행됩니다. 여기index.html 파일에서 404 오류가 발생했습니다.

은 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 파일입니다 :

enter image description here

:

<?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> 

그리고 여기 내 파일 구조

이 프로젝트를 실행하면 404 오류가 발생합니다.

,451,515,

http://localhost:8080/SIMS/

나는 또한 시도 :

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

이 또한 404 프로젝트를 실행하는 방법에 대한 아이디어를 준?

답변

2

에서 파일을 선택합니다. jsf 라이브러리가 귀하의 페이지를 찾을 수 없습니다.

그런 다음 index.jsf에 <welcome-file> 이름을 변경하고 index.html을 옆에 빈 index.jsf 파일을 만들려면 <url-pattern><url-pattern>*.jsf</url-pattern>에 변경하려고합니다.

1

은 로컬 호스트를 입력하려고 내가 문제가 <url-pattern> 생각 브라우징 트리

+0

그래서 http : // localhost : 8080 /을 가지고 그 위치에서 파일을 시작해야합니까? 미안 당신이 의미하는 바를 확실히 모르겠다. – Bawn

+0

예. 그걸 시도해보십시오 ./ 확실하지 않지만 localhost를 사용할 수 있어야합니다. 포트에 입력하는 것을 결코 용서할 수 없습니다. – Martin42006