我正在通过一些示例来使用jersey创建REST服务。
我能够部署服务并从index.jsp接收欢迎消息,但我无法获取REST服务中定义的资源。
下面是我的班级和web.xml
package com.test.rest;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.core.Response;
@Path("/test")
public class test{
@GET
@Path("/{param}")
public Response getMsg(@PathParam("param") String msg) {
String output = "Jersey say : " + msg;
return Response.status(200).entity(output).build();
}
}
的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"
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>first servlet</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>com.test.rest</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey REST Service</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>
要访问的URI:http://localhost:8080/PresenceRepositoryApp/rest/test/nice
我得到的错误是 HTTP状态404 - 未找到
我检查了web.xml并从示例中进行了比较,但无法找到遗漏的内容。我知道一些事情必须非常愚蠢,但我无法弄清楚。
答案 0 :(得分:1)
回答太晚了,但它可以帮助像我这样的人。 :)
看来,网址不正确。
网址应为:
http://localhost:8080/first servlet/rest/test/nice
PS:如果需要,不要忘记尝试%20%的空间。
答案 1 :(得分:0)
如果您使用的是Tomcat服务器,请按以下步骤更改您的web.xml。
替换org.glassfish.jersey.servlet.ServletContainer 与com.sun.jersey.spi.container.servlet.ServletContainer