zone.gryphon:screech-gson2

Highly pluggable async HTTP abstraction library

License

License

Categories

Categories

Gson Data JSON
GroupId

GroupId

zone.gryphon
ArtifactId

ArtifactId

screech-gson2
Last Version

Last Version

0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Highly pluggable async HTTP abstraction library

Download screech-gson2

How to add to project

<!-- https://jarcasting.com/artifacts/zone.gryphon/screech-gson2/ -->
<dependency>
    <groupId>zone.gryphon</groupId>
    <artifactId>screech-gson2</artifactId>
    <version>0.1</version>
</dependency>
// https://jarcasting.com/artifacts/zone.gryphon/screech-gson2/
implementation 'zone.gryphon:screech-gson2:0.1'
// https://jarcasting.com/artifacts/zone.gryphon/screech-gson2/
implementation ("zone.gryphon:screech-gson2:0.1")
'zone.gryphon:screech-gson2:jar:0.1'
<dependency org="zone.gryphon" name="screech-gson2" rev="0.1">
  <artifact name="screech-gson2" type="jar" />
</dependency>
@Grapes(
@Grab(group='zone.gryphon', module='screech-gson2', version='0.1')
)
libraryDependencies += "zone.gryphon" % "screech-gson2" % "0.1"
[zone.gryphon/screech-gson2 "0.1"]

Dependencies

compile (2)

Group / Artifact Type Version
zone.gryphon : screech-core jar
com.google.code.gson : gson jar

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar

test (3)

Group / Artifact Type Version
zone.gryphon : screech-test-utilities jar
ch.qos.logback : logback-classic jar
ch.qos.logback : logback-core jar

Project Modules

There are no modules declared in this project.

Screech - Async HTTP, made easier

Build Status Maven Central

Screech is an HTTP abstraction library inspired by projects like Retrofit and Feign, but with a focus on support for Asynchronous IO.

Benefits

Unlike traditional blocking IO, asynchronous (or non-blocking) IO doesn't require tying up a thread waiting on a response. This means that a single thread can issue multiple requests concurrently, and handle the results as they come in.

In pseudo code, traditional blocking IO looks like the following:

// calling thread blocks until request completes
handleResponse(makeRequest());

// second request isn't started until first request is completed
handleResponse(makeAnotherRequest());

whereas non-blocking IO looks like the following:

// calling thread returns immediately, callback will be run when request completes 
makeRequest().whenComplete(response -> handleResponse(response));

// second request is issued before the first request completes
makeAnotherRequest().whenComplete(response -> handleResponse(response));

This means that for applications which either issue a large number of requests, or that call endpoints which take a long time to respond, the use of non-blocking IO can greatly reduce the number of threads required, and hence the memory required by the application (as well as CPU required to context switch between threads).

Example Usage

A typical Screech client implementation will look something like this:

@Header("Accept: application/json")
public interface WidgetsClient {

    @RequestLine("GET /v1/widgets/{id}")
    CompletableFuture<Widget> getWidget(@Param("id") UUID id);

}

And can be instantiated like the following (note that while this example uses Jackson for request encoding/decoding and Jetty as the underlying HTTP client, it's configurable based on what best suits your needs):

public class Example {

   public static WidgetClient buildClient() {
       return new ScreechBuilder(new JettyScreechClient())
           .requestDecoder(new JacksonDecoder())
           .requestEncoder(new JacksonEncoder())
           .build(WidgetsClient.class, new HardCodedTarget("http://example.com"));
   }

}

Once instantiated, the client can be used like any other Java interface:

public class ExampleUsage {
    
    public static void main(String... args) {
        WdigetsClient client = Example.buildClient();

        client.getWidget(UUID.randomUUID()).thenAccept(widget -> {
            System.out.println("I got a widget: " + widget);
        });
    }
}

Java Version Compatibility

Screech makes heavy usage of Java 8 features, and is thus incompatible with Java 7 and below

Adding to your project

To ease integration into projects using Maven, Screech publishes a Bill Of Materials (BOM) POM file, which can be used instead of manually managing dependency versions for individual modules.

To use it, add the following to your project's POM file (if you already have a dependency management section, add the dependency to the existing section):

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>zone.gryphon</groupId>
            <artifactId>screech-bom</artifactId>
            <version>${screech.version}</version>
            <type>pom</type>
            <scope>import</scope>
        </dependency>
    </dependencies>
</dependencyManagement>

where screech.version is defined in your project's properties section:

<properties>
    <screech.version>LATEST RELEASE</screech.version>
</properties>

You can visit the releases page to find the latest release version.

Once that's added, you can add the individual screech modules to your project without needing to re-define the versions, like so:

<dependencies>
    <dependency>
        <groupId>zone.gryphon</groupId>
        <artifactId>screech-annotations</artifactId>
    </dependency>
    <dependency>
        <groupId>zone.gryphon</groupId>
        <artifactId>screech-core</artifactId>
    </dependency>
</dependencies>

Integrations

Screech is modular, and allows all of the components that do the "heavy lifting" to be pluggable. This includes the request serializer and deserializer, the underlying HTTP client, and any number of request interceptors you may want to add.

Screech plays well with other open source projects, and comes with out-of-the-box support for some of the most popular ones.

If you don't see your favorite library, adding support should be easy; most integrations are less than 100 lines of code. If you write an integration and feel it should be included in the "standard" modules, feel free to open a pull request and explain why!

Included Integrations

Request encoding/decoding

Gson

JSON request encoding/decoding using Google's gson

Jackson 2

JSON request encoding/decoding using Jackson 2

HTTP clients

Async HTTP client

HTTP client utilizing async-http-client

Jetty HTTP client

HTTP client utilizing the Jetty HTTP client

zone.gryphon

Gryphon Zone

Versions

Version
0.1