MicroProfile Rest Client 1.3.1
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.1</version>
</dependency>
Update since 1.3:
- Removed hard dependency on JSON-B. As in MP Rest Client 1.2, the dependency will be optional. Like 1.2, implementors must provide a JSON-B entity provider if the JSON-B APIs are available.
- Fixed an issue in the SSL TCK tests with newer versions of Jetty. See issue #194 for more details.
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.