gpt4 book ai didi

web-services - HTTP 状态 404 - Servlet JAX-RS Servlet 不可用

转载 作者:行者123 更新时间:2023-11-28 22:32:12 25 4
gpt4 key购买 nike

我尝试使用 Eclipse 创建 restful webservice 并遵循了

中提到的所有步骤

http://shrikantuw.blogspot.in/2012/03/jersy-developing-restful-web-service.html

但是当我尝试在 tomcat 中运行并点击

http://localhost:8080/RestFulWS/rest/exampleWithOutParam/getName

我得到了

HTTP Status 404 - Servlet JAX-RS Servlet is not available

我的tomcat端口也是8080而已。

请告诉我我该怎么做。

最佳答案

如果您的 web.xml 和服务类映射如下,它应该可以正常工作:

您的网址:

http://localhost:8080/RestFulWS/rest/exampleWithOutParam/getName

web.xml:

<display-name>RestFulWS</display-name>
<servlet>
<servlet-name>Jersey REST Service</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>com.sun.jersey.config.property.packages</param-name>
<param-value>com.yourapp</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>

您的服务:

package com.yourapp;
// imports here
@Path("/exampleWithOutParam")
public class YourService {
@GET
@Path("/getName")
@Produces("text/plain")
public Response getName() {
return Response.ok("OK").build();
}
}

关于web-services - HTTP 状态 404 - Servlet JAX-RS Servlet 不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10765734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com