Cannot deserialize value of type `java.util.Date` from String
Change your @JsonFormat line to this. @JsonFormat(pattern=”yyyy-MM-dd’T’HH:mm:ss”) The format pattern you have right now expects the sting to have millisecond values – but your example string doesn’t have them.