2016-02-14 20 views

回答

0
ResteasyClient client = new ResteasyClientBuilder().build(); 
      ResteasyWebTarget target = client.target("http://localhost:8080/car/bmw;color=red"); 
      Response response = target.request().get(); 
      String value = response.readEntity(String.class); 
      System.out.println(value); 
      response.close();