Giter VIP home page Giter VIP logo

java-json-client's Introduction

java-json-client

This is a library that provides you with a simple way to do http/https requests to your REST API.

Usage

<dependency>
    <groupId>no.bouvet</groupId>
    <artifactId>json-client</artifactId>
    <version>1.0.5</version>
</dependency>

Create your json client like this:

JsonClient jsonClient = new JsonClient();

Or with a ObjectMapper like this:

JsonClient jsonClient = new JsonClient(objectMapper);

How to get your REST-API response for GET, POST, PUT and DELETE:

HttpResponse response = jsonClient.http().get("http://").response();
HttpResponse response = jsonClient.http().post("http://", new ObjectToPost()).response();
HttpResponse response = jsonClient.http().put("http://", new ObjectToPut()).response();
HttpResponse response = jsonClient.http().delete("http://").response();

How to get your response using https:

HttpResponse response = jsonClient.ssl().get("http://").response();

How to get and parse your response directly to your preferred object:

MyObject myObject = jsonClient.http().get("http://").object(MyObject.class);

How to get and parse your response directly to your preferred list:

List<MyObject> myObject = jsonClient.http().get("http://").list(MyObject.class);

How to get and parse your response directly to your preferred list of list:

List<MyObject> myObject = jsonClient.http().get("http://").listOfList(MyObject.class);

How you get and parse your response directly to your preferred map:

Map<String, MyObject> myObject = jsonClient.http().get("http://").map(MyObject.class);

How to poll for data and trigger when condition is fulfilled (example - TestObjectCondition )

MyObject myObject = jsonClient.http().poll("http://", MyObject.class, 5000, new TestObjectCondition(state));

How to poll for data without any conditions.

MyObject myObject = jsonClient.http().poll("http://", MyObject.class, 5000);

If you are using Spring and Joda DateTime you might need to configure it using JsonClientJackson2ObjectMapperFactoryBean in your servlet.xml

<mvc:annotation-driven>
    <mvc:message-converters>
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
            <property name="objectMapper">
                <bean class="no.bouvet.jsonclient.spring.JsonClientJackson2ObjectMapperFactoryBean"/>
            </property>
        </bean>
    </mvc:message-converters>
</mvc:annotation-driven>

This how you solve it using Spring 4 annotation configuration

@Configuration
@ComponentScan("no.bouvet.app")
@EnableWebMvc
public class DispatcherConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters){
        MappingJackson2HttpMessageConverter converter = new MappingJackson2HttpMessageConverter();
        converter.setObjectMapper(new JsonClientJackson2ObjectMapperFactoryBean().getObject());
        converters.add(converter);
        super.configureMessageConverters(converters);
    }
}

This library has been tested on a REST API implemented in:

java-json-client's People

Contributors

jansoren avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  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.