Jersey Method not allowed 405
问题 I am new to the rest services. I am trying to create a service that accepts json string from a client. I am getting 405 error when I am calling this service using JQuery. Below is the Java code for ws: @POST @Path("logevent") @Consumes(MediaType.APPLICATION_JSON) public boolean logEvent(String obj) { System.out.println(obj); return true; } and @Path("getdata") @GET public String getData() { return "Hello"; } and jQuery code for posting the JSON is: var json ="{\"userName\":\"testtest\"}"; var