Description
The Restler library automatically generates a client for a web service at run time, by analyzing the respective annotated Spring controller interface. Restler may help you remove HTTP-specific boilerplate from your integration tests, microservices and third-party HTTP API clients.
Restler alternatives and similar libraries
Based on the "REST Frameworks" category.
Alternatively, view Restler alternatives based on common mentions on social networks and blogs.
-
Dropwizard
Opinionated framework for setting up modern web applications with Jetty, Jackson, Jersey and Metrics. -
rest.li
Framework for building robust, scalable RESTful architectures using type-safe bindings and asynchronous, non-blocking IO with an end-to-end developer workflow that promotes clean practices, uniform interface design and consistent data modeling. -
Swagger
Swagger is a specification and complete framework implementation for describing, producing, consuming, and visualizing RESTful web services. -
Rapidoid
A simple, secure and extremely fast framework consisting of embedded HTTP server, GUI components and dependency injection. -
Microserver
A convenient extensible Microservices plugin system for Spring & Spring Boot, with over 30 plugins and growing, that supports both micro-monolith and pure microservices styles. -
Restlet Framework
Pioneering framework with powerful routing and filtering capabilities, unified client and server API. -
Crnk
Implementation of the JSON API specification to build resource-oriented REST endpoints with sorting, filtering, paging, linking, object graphs, type-safety, bulk updates, integrations and more. -
StubbornJava
Unconventional Java code for building web servers / services without a framework. Think dropwizard but as a seed project instead of a framework. If this project had a theme it would be break the rules but be mindful of your decisions.
Get performance insights in less than 4 minutes
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Restler or a related project?
Popular Comparisons
README
Restler
Overview
Restler is a library that automatically generates a client for a web service at run time, by analyzing the respective annotated Spring controller interface. Restler may help you remove HTTP-specific boilerplate from your integration tests, microservices and thirdparty HTTP API clients.
EPA warning: Restler currently is in early public access stage and it is neither feature complete, tested in production or backward compatible
Features
- Easily extensible architecture
- Custom authentication, authorization and errors mapping strategies
- Support of form-based, http basic, cookie-based and generic header-based authentication
- Support of async controllers through methods returning
Future
,DefferedResult
orCallable
objects - Experemental Spring Data REST support
Simple Usage Example
Suppose you have the following interface on the server:
/**
* An annotated Spring controller interface
*/
@Controller
@RequestMapping("greeter")
public interface Greeter {
@RequestMapping("greetings/{language}")
String getGreeting(@PathVariable String language, @RequestParam(defaultValue = "Anonymous") String name);
}
Then in your client you can invoke the getGreeting
method of the remote service using the following code snippet:
Service service = new Restler("https://www.example.com/api", new SpringMvcSupport()).build();
Greeter greeter = service.produceClient(Greeter.class);
String greeting = greeter.getGreeting("en","Buddy"); // the result of https://www.example.com/api/greeter/greetings/en?name=Buddy call