CRest is a lightweight library that simplifies the integration of third parties RESTful services into java applications.
CRest is mainly annotation-driven, allowing the developer to focus on the essential aspects of the integration of a REST service, such as the definition of:
- the java
... [More]
interface that maps the remote REST methods.
- the data model the interface will deal with.
The rest is achieved by annotating a plain java interface with the relevant information such as the service end-point, the desired timeouts, url formats etc... CRest will handle everything else, from http request generation, execution and auto marshalling of the response. [Less]