My Rest Api is as below -
@POST
@Path("/search")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public Response getProducts(@RequestBody MyClass myclass) throws Exception {
//my code
}
i have added default constructor in MyClass and all subsequent classes as well . Every time i hit the URL with this json(sending in request body ) i am getting The HTTP 415 Unsupported Media Type client error , Can anyone help on this ? While sending the request i am setting- Content-Type:application/json and Accept - application/json