I wonder if it is possible to deserialize RFC3339 full-date field of an request json body to some java date class within msf4j application?
My model looks like:
class Model {
java.util.Date date;
...
}
Service looks like:
@Path("/")
class Service {
@POST
@Path("/models")
@Consumes({"application/json"})
public Response(Model m) {
...
}
}
And when I do post, it returns me : "Error in executing request: POST /models"