I have a spring application which requires to call REST based external API calls for some data.
The data format from the API is JSON.
My question is which o
I have used Spring & Jersey. Jersey makes it easy to build RESTful Web services with Spring through the use of annotations like @GET&@POST & @PUT @DELETE bundle with JAX-RS library.
@GET
@POST
@PUT
@DELETE