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.
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.