I am using REST template to intentionally send a % in request uri, something like /items/a%b
String responseEntity = restTemplate.exchange("/items/a%b",
requestObj.getHttpMethod(), requestEntity, String.class);
The restTemplate
is converting the endoding of this uri and it is becoming /items/a%25b
which makes sense as the rest template by default encodes the uri.
I tried using UriComponent
for disabling the encoding of the uri
UriComponents uriComponents = UriComponentsBuilder.fromPath("/items/a%b").build();
URI uri= uriComponents.toUri();
String responseEntity = restTemplate.exchange(uri,
requestObj.getHttpMethod(), requestEntity, String.class);
But this is not working as the uri again is of type URI which do the encoding. I am sure I am not using the UriComponents the right way.
I would really appreciate if anyone could point out what's the right way of disabling the encoding.
Thanks.