Giter Club home page Giter Club logo

onsdigital.dp-http-java's Introduction

dp-http-java

Library providing standardized HTTP functionality for Java apps - taking care of boilerplate code.

Example

Create an instance of the client.

    JsonClient jsonClient = new JsonJsonClientImpl();

Create a HTTP request to execute

    HttpUriRequest request = new HttpGet("http://localhost:6666/message");
    request.setHeader("Accept", "application/json");
    request.setHeader("Content-Type", "application/json");

Send the request and get the response entity

    SimpleEntity entity = jsonClient.executeRequestForEntity(req, ResponseHandler<T>);

ResponseHandler<T>

ResponseHandler is an abstract class providing functionality for handling the HTTP response returned to the client. Internally it handles extracting the JSON body of the response and marshalling into the required Java object . The are 2 abstract methods you must implement:

  • void checkStatus(StatusLine statusLine) throws ClientException
    • Define how to check the response status of your request and how to handle incorrect statuses.
  • Class<T> getType()
    • The type to marshal the response body to.

Example:

ResponseHandler<SimpleEntity> simpleEntityHandler() {
        return new ResponseHandler<SimpleEntity>() {
            @Override
            protected void checkStatus(StatusLine statusLine) throws ClientException {
                if (statusLine.getStatusCode() != 200) {
                    throw new ClientException("incorrects status code returned");
                }
            }

            @Override
            protected Class<SimpleEntity> getType() {
                return SimpleEntity.class;
            }
        };
    }

onsdigital.dp-http-java's People

Contributors

daillew avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.