In this post, we will see how to resolve Is there a difference between Uni<List<T>> vs Multi<T> in Quarkus Resteasy reactive? Question: When implementing a reactive endpoint, is there any difference between returning Uni<List<T>> vs Multi<T> ? I find it ...
In this post, we will see how to resolve ObjectMapper different behaviour in Resteasy Client with proxy Question: I’m doing a quite usual task to integrate a remote JSON service in a spring application, what it seems to happen is ...
Question: In a RESTEasy project running on Wildfly server, there is a resource class: Initially the REST API configuration class just extends Application without any extra @override on the existing methods of Application class. An http request, http://localhost:8080/workcontext/company, with PUT ...
Question: I checked the docs and stackoverflow but didn’t find exactly a suiting approach. E.g. this post seems very close: Dispatch a blocking service in a Reactive REST GET endpoint with Quarkus/Mutiny However, I don’t want so much unneccessary boilerplate ...
Question: I have the case where i need to write resource classes for our API that take more than four query parameters, and the number of if else statements i need to write is equivalent to the cardinality of the ...
Question: I created Reactive SQL client on Quarkus using this official guide, but while making GET request on http://localhost:8080/hello trying to query data from database, I get such an error: Answer: You need to add something like: to your JAX-RS ...