我遇到了Jersey PUT方法的问题。我只想将一个String(MediaType APPLICATION_JSON)添加到localhost:8080 / testtest。但是当用线
尝试这个时service.path("testtest")
.type(MediaType.APPLICATION_JSON)
.put(String.class, "{\"firstName\":\""+firstName+"\",\"lastName\":\""+lastName+"\"}");
我得到了这个例外:
Exception in thread "main" com.sun.jersey.api.client.UniformInterfaceException: PUT http://localhost:8080/testtest returned a response status of 405 Method Not Allowed
你知道如何解决这个问题吗?
以下是整个代码:
import java.io.IOException;
import javax.ws.rs.Path;
import javax.ws.rs.core.MediaType;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
import com.sun.jersey.api.container.httpserver.HttpServerFactory;
@Path("testtest")
public class TestClass {
public static void main(String[] args) throws IllegalArgumentException, IOException {
test();
}
private static void test() throws IllegalArgumentException, IOException {
HttpServer server = HttpServerFactory.create("http://localhost:8080/");
server.start();
WebResource service = Client.create().resource("http://localhost:8080/");
String firstName = "First Name";
String lastName = "Last Name";
service.path("testtest")
.type(MediaType.APPLICATION_JSON)
.put(String.class, "{\"firstName\":\""+firstName+"\",\"lastName\":\""+lastName+"\"}");
// Exception in thread "main" com.sun.jersey.api.client.UniformInterfaceException: PUT http://localhost:8080/testtest returned a response status of 405 Method Not Allowed
System.out.println(service.path("testtest").accept(MediaType.APPLICATION_JSON).get(String.class));
server.stop(0);
}
}
非常感谢你!
答案 0 :(得分:2)
很可能您的服务方法没有@PUT
注释。发布您的服务代码以便更好地进行诊断。