Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get the URL for a Java Jersey Client request?

Using Jersey in Java I have a response object

Client c=Client.create();
WebResource r = c.resource("http://example.com/path");

MultivaluedMap<String, String> params = new MultivaluedMapImpl();
    params.add("param1", value);

r=r.path(getQualifiersByPromoServicePath).queryParams(params);

ClientResponse response = r.accept(MediaType.APPLICATION_JSON_TYPE).get(ClientResponse.class);

How can I get the url used to make the request? (for debug purposes) i.e. i want to get the string "http://example.com/path?param1=value" ?

like image 393
epeleg Avatar asked Dec 27 '22 10:12

epeleg


1 Answers

Have you tried r.getURI();? Should be what you're looking for...

like image 155
condit Avatar answered Jan 11 '23 16:01

condit