gx-rest/gxJRS
Luca Frosini b4bbaf8816 Fixed gcube-bom version 2021-06-23 14:49:24 +02:00
..
.settings Removed eclipse project files 2020-08-06 14:51:52 +02:00
distro Aligning pom artifactId to svn location 2019-03-22 11:21:36 +00:00
src Moved link from http to https in a comment refs #20779 2021-02-22 09:35:27 +01:00
.gitignore Ignored generated directory 2020-10-08 14:45:06 +02:00
.project Aligning pom artifactId to svn location 2019-03-22 11:21:36 +00:00
CHANGELOG.md Fixed versions for release 2021-06-23 14:22:19 +02:00
LICENSE.md Add CHANGELOG, README and LICENSE files to each module (as requested by the maven-parent). 2020-06-21 16:34:22 -04:00
README.md Add CHANGELOG, README and LICENSE files to each module (as requested by the maven-parent). 2020-06-21 16:34:22 -04:00
gxJRS.iml Add CHANGELOG, README and LICENSE files to each module (as requested by the maven-parent). 2020-06-21 16:34:22 -04:00
pom.xml Fixed gcube-bom version 2021-06-23 14:49:24 +02:00

README.md

gxRest

The gCube eXtensions to the Rest Protocol (gxRest) is a set of Java libraries designed to provide convenient round-trip interaction between a Restful web application (also known as "service") and its clients.

gxRest has the flexibility for different degrees of exploitation:

  • it can be entirely adopted both at client and service side with full benefit of its conventions;
  • it can be used to send REST requests based only on plain HTTP;
  • it can be used only to return HTTP code/messagess from the service;
  • it can be used only to throw Exceptions from the service to the client.

Examples of use

Sending a request:

GXHTTPRequest request = GXHTTPRequest.newRequest("http://host:port/service/").from("GXRequestTest");
 
//prepare some parameters
String context ="...";
Map<String,String> queryParams = new WeakHashMap<>();
queryParams.put("param name", "param value");
GXInboundResponse response = request.path("context")
	  .queryParams(queryParams).withBody(context).post();

Returning a success response:

 @POST
  public Response create(...) {
 
    //Resource successfully created 
    
    URI location = ... //URI of the new resource
    return GXOutboundSuccessResponse.newCREATEResponse(location)
              .withMessage("Resource successfully created.")
	      .ofType(MediaType.APPLICATION_JSON)
              .build();
  }

Throwing an exception:

@POST
  public Response create(...) {
 
    //Oh no, something failed here
    GXOutboundErrorResponse.throwException(new MyCustomException("Resource already exists."));
    
  }   

Parsing a response

// invoke the remote method and get a response.
GXInboundResponse response = ...;
if (response.hasException()) 
    throw response.getException();
//assuming a created (200) code was expected 
if (response.hasCREATEDCode()) {
		System.out.println("Resource successfully created!");
}
//access content as string
String value = response.getStreamedContentAsString();
//unmasharll content as json
Context returnedContext = response.tryConvertStreamedContentFromJson(Context.class);

Documentation

Deployment

Notes about how to deploy this component on an infrastructure or link to wiki doc (if any).

Built With

  • JAX-RS - Java™ API for RESTful Web Services
  • Jersey - JAX-RS runtime
  • Maven - Dependency Management

License

See LICENSE.md