我想使用矩阵参数执行GET请求。 http://localhost:8080/car/bmw;color=red
已经回答了这个问题Creating a GET request with matrix parameters ,但那里没有真正的逐步解释。
答案 0 :(得分:2)
此外,您可以更轻松地使用放心使用。
给出()。urlEncodingEnabled(假)。当()。得到(" http://localhost:8080/car/bmw;color=red&#34)
答案 1 :(得分: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();