Skip to content

MicroProfile Rest Client 1.3.2

Choose a tag to compare

@andymc12 andymc12 released this 31 May 02:55

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.2</version>
</dependency>

Update since 1.3.1:

  • Fixed TCK test case issue where super class was deployed.
  • Fixed an issue in the SSL TCK tests causing failures on Windows.

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.