我知道標題貌似很多人都問過這個問題,但我做了很多的研究,但沒有找到任何解決方案解決了我問題。我已經在這個問題上花了兩天時間,所以請幫助我!的Eclipse,maven的,澤西REST服務的servlet 3.0,Tomcat的7.0,HTTP 404錯誤
我想用Eclipse Kepler Service Release 2,Jersey內置的Eclipse內置maven,Servlet 3.0和Tomcat 7.0構建一個簡單的「hello world」類型的restful web服務。當我使用「運行方式」 - >「在服務器上運行」運行我的服務時,加載默認的「index.jsp」頁面時沒有問題,但在加載我的服務時不斷收到HTTP 404錯誤。
This image shows my project layout.
我實現應用程序類是這樣的:
package com.ys.java.ws;
import java.util.HashSet;
import java.util.Set;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
import com.ys.java.ws.resources.MyService;
@ApplicationPath("/ys")
public class MyApplication extends Application {
@Override
public Set<Class<?>> getClasses() {
Set<Class<?>> s = new HashSet<Class<?>>();
s.add(MyService.class);
return s;
}
}
我的資源類:
package com.ys.java.ws.resources;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
@Path("/test")
public class MyService {
public MyService() {
}
@GET
@Path("/hello")
//@Produces(MediaType.TEXT_PLAIN)
@Produces("text/html")
public String getTestMsg() {
return "It works";
}
}
我pom.xml文件是:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ys.java.ws</groupId>
<artifactId>ysNoWebXML</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>ysNoWebXML Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- Servlet 3.0 API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
<!--JAX-rs web service API -->
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-server</artifactId>
<version>2.23.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>2.23.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet</artifactId>
<version>2.23.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.containers</groupId>
<artifactId>jersey-container-servlet-core</artifactId>
<version>2.23.1</version>
</dependency>
</dependencies>
<build>
<finalName>TestService</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的web.xml是:
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>Servlet 3.0 Web Application</display-name>
<servlet>
<servlet-name>com.ys.java.ws.MyApplication</servlet-name>
</servlet>
<servlet-mapping>
<servlet-name>com.ys.java.ws.MyApplication</servlet-name>
<url-pattern>/rest</url-pattern>
</servlet-mapping>
</web-app>
需要注意的是:在所有MyApplication類,我設置@ApplicationPath("/ys")
並在web.xml中我設置<url-pattern>/rest</url-pattern>
。我intensionally做到這一點根據jax-rs document以來,
If both the <servlet-mapping> and @ApplicationPath are specified, the <servlet-mapping> takes precedence.
我想測試是否是這種情況,但是不管我使用的路徑,我得到HTTP 404錯誤。
我沒有看到你所使用做了測試訪問運行的應用程序是什麼網址。 –
我沒有足夠的積分來添加2個以上的網址。所以...我測試了以下內容:http:// localhost:8080/TestService/rest/test/hello ---- get 404,http:// localhost:8080/TestService/ys/test/hello --- get 404,http:// localhost:8080/TestService ---起作用,加載默認的index.jsp – user2573741
任何人都可以幫忙嗎? – user2573741