GxRest
Contents
Goals and Principles
The gCube eXtensions to the Rest Protocol (gxRest) is a Java library designed to provide convenient round-trip interaction between a Restful web application (also known as "service") and its clients.
Exploitation
gxRest has the flexibility for different degrees of exploitation of the library:
- it can be entirely adopted both at client and service side with full benefit of its conventions;
- it can be used just to send REST requests based only on plain HTTP;
- it can be used to parse the HTTP code of a response;
- it can be used only to return HTTP codes from the service.
Modules
The library is divided in two modules: gxHTTP and gxJSR
gxHTTP
Basic extensions to plain HTTP with zero-dependencies. It provides context-aware requests sent from a client to a web application
Distribution
gxHTTP is available as Maven artifact and can be added to a maven-based project with the following dependency:
<dependency> <groupId>org.gcube.common</groupId> <artifactId>gxHTTP</artifactId> <version>1.2.0</version> </dependency>
gxJRS
Advanced and fully-fledged extensions built on top of JAX-RS anf gxHTTP. It provides:
Prominent features of gxJRS are:
- to achieve independence from the web framework used to develop the web application;
- to guarantee the correctness of requests/responses across the D4Science infrastructure;
- to abstract over the HTTP-based details required by the gCube framework when invoking a remote service;
- to avoid that each service implements its own conventions over the returned responses;
- to return error responses at the familiar (for any Java programmer) level of exceptions and error codes, while web frameworks usually just let return an HTTP status, headers and streams.
Correlation with the JAX-RS runtime
The gxJRS approach is independent from the JAX-RS implementation used to develop the web application, being entirely based on the javax.ws.rs
package. However, some features rely on a JAX-RS runtime implementation. It dynamically loads the implementation available on the classpath and uses it for modeling and sending the responses and requests. The reference implementation for JAX-RS is named Jersey, but it is not included in Java SE. You must explicitly add Jersey or another JAR-RS implementation to your classpath.
At request side, a JAX-RS runtime is not strictly required as one of the requests implementation builds atop of plain HTTP protocol.
Distribution
gxJRS is available as Maven artifact and can be added to a maven-based project with the following dependency:
<dependency> <groupId>org.gcube.common</groupId> <artifactId>gxJRS</artifactId> <version>1.2.0</version> </dependency>
Integration with the client libraries of FWS
gxRest smoothly integrates with the client libraries (common-jaxrs-client, common-clients) of the FeatherWeight Stack by providing a request (GXWebTargetAdapterRequest
) fully compatible with javax.ws.rs.client.WebTarget
. The integration is described in a dedicate section of the request page.