I\'m building a very simple REST API using Jersey, and I\'ve got a warning in my log files that I\'m not sure about.
WARNING: A servlet POST request,
In my case I've fixed this error when I've changed the Object Date to String in the method.
Error:
@POST
@Path("/myPath")
@Produces(MediaType.APPLICATION_JSON)
public List myMethod(@FormParam("StartDate") Date date) throws Exception {
Fixed
@POST
@Path("/myPath")
@Produces(MediaType.APPLICATION_JSON)
public List myMethod(@FormParam("StartDate") String date) throws Exception {