[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");
}
}