Reputation: 1758
We are about to take on a large project implemented in Grails (2.3.7). The application makes heavy use of many different (end-points as well) REST-ful webservices. We are of course interested in using what is considered to be "best standards" (at least currently).
We are currently considering: - Using the Groovy HTTP-builder - Using the "REST Client builder" plugin
Any other we should consider and what are your experiences using the above mentioned?
Upvotes: 1
Views: 84
Reputation: 4779
I have used both http://grails.org/plugin/rest and http://grails.org/plugin/rest-client-builder and both provide a nice wrapper around HTTP Builder library. The "rest" plugin provides dynamic methods for you if you like using that syntax. I prefer REST client builder though. Both are easy to work with.
Upvotes: 1