Microprofile REST Client entry point #56085
Answered
by
geoand
danilopiazza
asked this question in
Q&A
|
I was having a hard time while debugging an issue with an injected In other words, given this interface: @Path("/extensions")
@RegisterRestClient
public interface ExtensionsService {
@GET
Set<Extension> getById(@QueryParam("id") String id);
}and this caller: @RestClient
ExtensionsService extensionsService;
...
extensionsService.getById(id);where should I put a breakpoint to step through the Quarkus and/or RESTEasy implementation of the My original issue (not relevant to this question)The issue, now solved, which led me to asking this question, was caused by my client using the wrong multipart encoder. It was similar to #39751. |
Answered by
geoand
Aug 21, 2026
Replies: 2 comments 1 reply
|
/cc @cescoffier (rest-client), @geoand (rest-client) |
0 replies
|
There is admittedly a lot of code that is generated for the REST client, but debugging ClientRequestSendHandler (or something like that, I'm writing without access to a computer now) is usually a good starting point |
1 reply
Answer selected by
danilopiazza
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is admittedly a lot of code that is generated for the REST client, but debugging ClientRequestSendHandler (or something like that, I'm writing without access to a computer now) is usually a good starting point