我正在使用restful webservices 我有一个简单的代码,如下所示:
@Path("/v1/status")
public class ControllerServices
{
@GET
@Produces(MediaType.TEXT_HTML)
String printOnly()
{
System.out.println("running successfully");
return "<p>this webservice</p>";
}
}
我的web.xml
文件是这样的:
<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.techbloomer.services</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>
当我提出要求时
http://localhost:8080/webservicesForIndTadka/rest/v1/status
它将错误视为
HTTP Status 405 - Method Not Allowed
type: Status report
message: Method Not Allowed
description: The specified HTTP method is not allowed for the requested resource.
答案 0 :(得分:1)
我见过类似的问题,当GET请求的头部有Content-Type时,tomcat(在我的情况下是版本7)返回错误代码405.
答案 1 :(得分:0)
@Path("/v1/status")
public class ControllerServices
{
@GET
@Path("print")
@Produces(MediaType.TEXT_HTML)
public String printOnly()
{
System.out.println("running successfully");
return "<p>this webservice</p>";
}
}
类上的路径注释表明这是一个根资源类,给定的路径值指定了类中包含的所有Web服务方法的基URI。
@GET注释用于区分处理实际Web服务请求的子资源方法和返回将用于处理请求的对象的子资源定位器方法。在这种情况下,该方法具有@GET注释,这意味着此方法处理请求并返回结果。
如果您导航到http://localhost:8080/webservicesForIndTadka/rest/v1/status/print/
,您会看到printOnly
返回"<p>this webservice</p>".
使用FireFox并安装RESTClient
答案 2 :(得分:0)
尝试
@Produces(
{
MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML
})
以下
@Path("/get")
用于指定方法的路径,JAX-RS可能正在使用不同的东西。
答案 3 :(得分:0)
http://localhost:8080/webservicesForIndTadka/rest/v1/status
我刚遇到了类似的问题,它被归结为一个缺失/在请求中。在这种情况下,它将是
http://localhost:8080/webservicesForIndTadka/rest/v1/status/
答案 4 :(得分:0)
嗨,我遇到了同样的问题,但修好了。
@Path("pathName")
。@Produces
有时可能是可选的。