Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

readme.md

REST client plugin for Microserver

micro-client example apps

This plugin provides two REST Clients

  1. NIORestClient - which is a non-blocking REST client using NIO
  2. AsyncRestClient - which is asyncrhonous, but makes use of threads

The NIORestClient is available as Spring bean. AsyncRestClient can simply be instantiated via the new keyword.

To use

Simply add to the classpath

Maven

 <dependency>
    <groupId>com.aol.microservices</groupId>  
    <artifactId>micro-client</artifactId>
    <version>0.62</version>
 </dependency>

Gradle

compile 'com.aol.microservices:micro-client:0.62'