Skip to content

MicroProfile Rest Client 1.3

Compare
Choose a tag to compare
@andymc12 andymc12 released this 14 May 19:17

MicroProfile Rest Client Spec PDF
MicroProfile Rest Client Spec HTML
MicroProfile Rest Client Spec Javadocs

To add to you Maven pom.xml file:

<dependency>
    <groupId>org.eclipse.microprofile.rest.client</groupId>
    <artifactId>microprofile-rest-client-api</artifactId>
    <version>1.3</version>
</dependency>

Key features:

  • Simpler configuration using configKeys - allowing multiple client interfaces to be configured with the same configuration settings.
  • SSL configuration support.
  • Allow client proxies to be cast to Closeable/AutoCloseable, enabling resources to be cleaned up after use.
  • Defined application/json to be the default MediaType if none is specified in @Produces/@Consumes.