提问者:小点点

返回415不支持的媒体类型REST客户端的响应状态


我想向REST网络服务发出POST请求,并想通过POST请求传递客户java对象。但是响应显示415错误代码不支持的媒体类型。
我的REST客户端

Client client = Client.create();
WebResource resource = client.resource("http://localhost:8080/cthix/rest/v1/m2");

Customer cust = new Customer();
cust.setId(101L);
ObjectMapper mapper = new ObjectMapper();
String jsonCustomer = mapper.writeValueAsString(cust);

ClientResponse restResponse = resource.accept("application/json").
                  post(ClientResponse.class,jsonCustomer);

                    System.out.println(restResponse.getStatus());
                    if(restResponse.getStatus()==200){
                        String output = restResponse.getEntity(String.class);
                        PrintWriter pw = response.getWriter();
                        pw.print(output);

                        pw.flush();
                        pw.close();
                    }

我的Rest服务:

@Path(value = "/v1")
public class V1_status {
    @Path("/m2")
    @POST
    @Produces(MediaType.APPLICATION_JSON)
    @Consumes(MediaType.APPLICATION_JSON)
    public Customer returnCustomerDetails(Customer customer){
        Set<Integer> phones = new HashSet<Integer>();
        phones.add(123424541);
        phones.add(123432123);

        List hobbies= new ArrayList();
        hobbies.add("Swimming");
        hobbies.add("coding");;

        customer.setHobbies(hobbies);
        customer.setPhones(phones);
        customer.setCity("Noida");
        customer.setName("abhishek");
        return customer;
    }
}

请指导如何修复它。


共2个答案

匿名用户

我实际上遇到了问题,我错过的是:source. type("application/json")

ClientResponse restResponse = resource.accept("application/json").type("application/json").post(ClientResponse.class,cust);

需要注意的两点:
1)不需要手动将客户对象转换为Json。(如果你转换也没有问题)

2)不需要使用@消费(MediaType.APPLICATION_JSON)。如果你甚至使用它,没有问题。这只说明,这个方法将接受这个MediaType。如果你不使用@消费注释,REST服务方法将尝试使用它来的任何格式,并将尝试解析来自客户端的数据到其适当的Model对象(在参数中)。如果成功解析没有问题。如果数据没有以适当的格式与Model对象同步。它将抛出异常。就是这样。

匿名用户

问题是您告诉服务使用JSON,参数客户是客户类型,并且在您的REST客户端中您正在发送一个字符串。

你需要

  1. 从您的Rest服务中删除@消费(MediaType.APPLICATION_JSON)
  2. 在客户端:发送一个客户对象(而不是它的json表示)