Closed as not planned
Description
How to disable URL encoding in HttpInterface
/HttpExchange
client?
@HttpExchange
public interface HttpClient {
@GetExchange("/{uriPath}")
Mono<Todos> getTodos(@NotNull @PathVariable String uriPath);
}
If I call HttpClient.getTodos("/todos/1")
--> internally final url
is getting encoded as "%2Ftodos%2F1"
.
Expected is "/todos/1"
.
Now how can I override this behavior not to encode the uriPath
of PathVariable
?