-
Bug
-
Resolution: Done
-
Major
-
2.7.5.ER3
-
None
-
False
-
None
-
False
-
-
Documented as Known Issue
-
-
---
== Reactive Rest client duplicates paths to sub-resources
When the Reactive Rest client is used to access sub-resources of some HTTP resource, it duplicates the part of the address which identifies these sub-resources.
.Example:
@Path("/resource")
public interface Client {
@Path("/sub")
SubClient getSubResource();
interface SubClient
{ @GET @Path("/something") String getSomething(); }}
+
The call client.getSubResource().getSomething() maps to a request to/resource/sub/sub/something, instead of /resource/sub/something.
- blocks
-
QUARKUS-1415 Reactive REST Client improvements
- Closed
- mentioned on