I am facing issues while consuming JAX-RS services as JSON.
Below I have added my code.
This is my service class:
//Sets the path to base URL
You have to convert the response to JSON using Gson.toJson(object).
Gson.toJson(object)
For example:
return Response.status(Status.OK).entity(new Gson().toJson(Student)).build();