首页 > 代码库 > Jersey Client Post Bean参数
Jersey Client Post Bean参数
代码:
public static void main(String[] args) { Student st = new Student("Adriana", "Barrer", 12, 9); ClientConfig clientConfig = new DefaultClientConfig(); clientConfig.getFeatures().put( JSONConfiguration.FEATURE_POJO_MAPPING, Boolean.TRUE); Client client = Client.create(clientConfig); WebResource webResource = client .resource("http://localhost:8080/JerseyJSONExample/rest/jsonServices/send"); ClientResponse response = webResource.accept("application/json") .type("application/json").post(ClientResponse.class, st); if (response.getStatus() != 200) { throw new RuntimeException("Failed : HTTP error code : " + response.getStatus()); } String output = response.getEntity(String.class); System.out.println("Server response .... \n"); System.out.println(output); }
资源中代码:
@POST @Path("/send") @Consumes(MediaType.APPLICATION_JSON) public Response consumeJSON( Student student ) { System.out.println("student :"+student); System.out.println("student content:"+student.getFirstName()); String output = student.toString(); return Response.status(200).entity(output).build(); }
实体bean中必须要有默认的空构造器。
Jersey Client Post Bean参数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。