我使用netbeans和glassfish创建了restful web服务,但是当我尝试点击其余服务时,我的浏览器显示404找不到异常。
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
<servlet>
<servlet-name>Jersey Web Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.pps.rest.service</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>TestServlet</servlet-name>
<servlet-class>com.pps.servlet.TestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TestServlet</servlet-name>
<url-pattern>/TestServlet</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
</web-app>
这是休息服务:
@Path("/todo")
public class TodoResource {
// This method is called if XMLis request
@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Todo getXML() {
Todo todo = new Todo();
todo.setSummary("This is my first todo");
todo.setDescription("This is my first todo");
return todo;
}
// This can be used to test the integration with the browser
@Path("/todo1")
@GET
@Produces({MediaType.TEXT_XML})
public Todo getHTML() {
Todo todo = new Todo();
todo.setSummary("This is my first todo");
todo.setDescription("This is my first todo");
return todo;
}
@Path("greet")
@GET
public String doGreet() {
return "Hello Stranger, the time is " + new Date();
}
}
当我点击网址时:
http://localhost:8080/pps/rest/todo/greet
我在glassfish上获得404,我已经通过击中testservlet的url来确保我的glassfish正在运行。
答案 0 :(得分:2)
可能您的问题与GAS 4捆绑的Jersey版本有关。
取决于您使用某些Jersey 2.x版本的GAS的确切版本。正如我可以从您的代码中假设的那样,您正在按照版本1.x的方式初始化泽西。看看Arun的例子here。您可以在该页面上下载该示例的源代码。他的例子太基本了,甚至根本没有web.xml文件(因为它是一个非常基本的例子,web.xml现在是可选的)。这就是为什么您可能还想看看泽西样本应用程序代码。例如,bookstore可能是一个很好的例子。
用两个词来说,你必须扩展org.glassfish.jersey.server.ResourceConfig
@ApplicationPath("/")
public class MyApplication extends ResourceConfig {
public MyApplication() {
registerClasses(UsersResource.class);
register(new JettisonFeature());
}
}
并根据您的选择将其作为Jersey Servlet或Filter的javax.ws.rs.Application参数提供。它将在书店示例中过滤。您将在代码中看到。 maven repo中有plenty examples解释更高级的东西
<filter>
<filter-name>org.glassfish.jersey.examples.bookstore.webapp.MyApplication</filter-name>
<filter-class>org.glassfish.jersey.servlet.ServletContainer</filter-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>org.glassfish.jersey.examples.bookstore.webapp.MyApplication</param-value>
</init-param>
<!-- pass to next filter if Jersey/App returns 404 -->
<init-param>
<param-name>jersey.config.servlet.filter.forwardOn404</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>org.glassfish.jersey.examples.bookstore.webapp.MyApplication</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
答案 1 :(得分:0)
我认为原因是您没有在代码中正确指定路径。我看到的只是/ todo,/ todo1,/ greet等路径。你要找的是/ todo / greet,所以这应该在WebService方法@Path注释中指定。
注释要用作webservice的方法,如下所示:@Path(&#34; / todo / greet&#34;)
您获得404的原因是您的班级中没有路径/ todo / greet的方法。
希望这有帮助!
由于