I use spring rest and jackson 2.6.1
I have a url like
So from the client this url (with startDate=13/10/2015) /rest/appointments?
@RequestMapping(value = "/appointments", method = RequestMethod.GET)
public List<AppointmentInformationDto> getAllAppointmentsFromDate(@RequestParam(value = "startDate") Date startDate) {
...
}
Date i receive is 2016 january 10. Not really the same date entered.