非常特殊:HTTP状态405 - 方法不允许

2022-09-04 00:38:50

[使用Apache Tomcat/7.0.27]

似乎我只得到这个错误

  • (HTTP 状态 405 - 不允许的方法)

当我尝试直接从浏览器发出REST请求时。

例如,通过将其粘贴到地址栏中:

http://localhost:8080/restExample/rest/catalog/video/14951/hello

当我运行测试客户端 Main 时.java一切正常。

关于为什么它不允许我通过浏览器执行REST的任何想法?

客户端:

public class Main{
    public static void main(String [] args){
       ClientConfig config = new DefaultClientConfig();
       Client client = Client.create(config);   
       WebResource service = client.resource(getBaseURI(_package));
       runPutRequest(service,"video/128/This is the content with the new description");
    }
}

...
private static void runPutRequest(WebResource service,String path){
        String response = service.path("rest/catalog/"+path).accept(MediaType.APPLICATION_XML).put(String.class);
        System.out.println("Post Response :"+response);
    }

服务器端:

@PUT
@Path("/video/{video-id}/{short-descr}")
@Consumes(MediaType.TEXT_PLAIN)
@Produces(MediaType.APPLICATION_XML)
public Video updateVideo(@PathParam("video-id") int contentid,
                         @PathParam("short-descr") String descr)
{       
    //Video video = searchByContentId(contentid);
    Video video = videoMap.get(contentid);
    video.setDescription(descr);

    videoMap.put(contentid,video);
    
    if( videoMap.get(contentid) != null){
        return videoMap.get(contentid);
    }else{
         throw new UnsupportedOperationException("NO object found");
    }
}

答案 1

浏览器将向你的资源发出 GET 请求 - 你已在服务器端声明为 a,并从客户端代码中对它进行 PUT 操作。浏览器正在尝试“获取”(或GET)资源,但不存在任何@GET@PUT


答案 2

通常,浏览器使用 GET HTTP 方法发出请求。您的服务器端组件只能响应 PUT 请求,这就是您收到该错误代码的原因。