I want to deserialize date from Twitter to ZonedDateTime. My program fails on the created_at field deserializing.
ZonedDateTime
created_at
My Domain class
Try to add this annotation over your property
@JsonFormat(shape= JsonFormat.Shape.STRING, pattern="EEE MMM dd HH:mm:ss Z yyyy") @JsonProperty("created_at") ZonedDateTime created_at;