I\'m trying to deserialize an ISO8601 formatted date into Java8 java.time.Instant using Jackson. I registered JavaTimeModule with the ObjectMapper, and turned off t
java.time.Instant
You need to set the explicit time zone via XXX in your modell class:
XXX
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX")
(see: https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html)