尝试使用Jersey和Tomcat在Java中运行RESTful服务时,我获得了404页面。
这是我的项目:
这是HelloWorld.java:
package service;
import javax.ws.rs.*;
@Path("/hello")
public class HelloWorld {
@GET
@Produces("text/plain")
public String get() {
return "Hello World";
}
}
这是web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0"
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">
<display-name>EclipseTest</display-name>
<servlet>
<display-name>Rest Servlet</display-name>
<servlet-name>RestServlet</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>service</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>RestServlet</servlet-name>
<url-pattern>/service/*</url-pattern>
</servlet-mapping>
</web-app>
我根据其他SO答案尝试了这些网址:
http://localhost:8080/EclipseTest/service/hello
http://localhost:8080/service/hello
使用&#39; Run As&gt;在服务器上运行&#39;它将我发送到这个页面(404s): http://localhost:13036/EclipseTest/WEB-INF/classes/service/HelloWorld.java
我正在使用:
非常感谢任何帮助。
答案 0 :(得分:1)
您的路径不正确。
您的上下文路径为EclipseTest
,因此如果您想访问helloworld,那么您应该访问contextpath+path param
所以它应该是
localhost:8080/EclipseTest/hello
因为您已将课程映射到hello
所以contextpath + path -> EclipseTest/hello
答案 1 :(得分:0)
更改代码如下:
package service;
import javax.ws.rs.*;
@Path("/hello")
public class HelloWorld {
@GET
@Path("/get")
@Produces("text/plain")
public String get() {
return "Hello World";
}
}