Skip to content

MicroProfile Rest Client 1.3.4

Compare
Choose a tag to compare
@andymc12 andymc12 released this 25 Oct 16:32

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

Update since 1.3.3:

  • Adding @RestClient to injection point in TCK test cases
  • Added Javadoc to avoid warnings during build
    All changes can be found here:
    1.3.3...1.3.4

Update since 1.3.2:

  • Fixed race condition in TCK async test case - issue #203.
  • Fixed IBM JDK 8 issue TCK SSL test cases - issue #204.

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.