Eclipse MicroProfile Rest Client 1.1
MicroProfile Rest Client Spec PDF
MicroProfile Rest Client Spec HTML
MicroProfile Rest Client Spec Javadocs
Key features:
- Asynchronous Methods - to use, just update the return type of your Rest Client methods to be
CompletionStage
. RestClientBuilderListener
- now products can plug in and register providers, update config properties, etc. prior to the creation of new client instances. This enables other MicroProfile technologies, like Open Tracing to automatically add their client request/response filters to MP Rest Clients.- Supports
java.net.URI
in addition tojava.net.URL
. @RegisterRestClient
is now a bean-defining annotation - no longer need to add@Dependent
annotation to the client interface.