MicroProfile Rest Client 1.3.2
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/jsonto be the default MediaType if none is specified in@Produces/@Consumes.