4

我需要使用 Jackson 将格式2016-11-28T10:34:25.097Z的时间反序列化为 Java8 的 ZonedDateTime。

我相信我正确配置了 ObjectMapper (一种工厂方法):

 @Bean
ObjectMapper getObjectMapper() {
    ObjectMapper objectMapper = new ObjectMapper();
    // some other config...
    objectMapper.registerModule(new JavaTimeModule());
    return objectMapper;
}

我的 DTO 代码中有一个字段

  @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSZ")
private ZonedDateTime updatedAt;

当我尝试由杰克逊解析这个时,我得到

 java.lang.IllegalArgumentException: Can not deserialize value of type java.time.ZonedDateTime 
 from String "2016-11-28T10:34:25.097Z": Text '2016-11-28T10:34:25.097Z' could not be parsed,
 unparsed text found at index 23  at [Source: N/A; line: -1, column: -1]  

没有@JsonFormat 问题仍然存在。

我怎么可能克服这个?

4

3 回答 3

6

问题可能与模式中的“Z”有关。它不允许在日期时间值中使用文字“Z”。改用“X”。

  @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX")
于 2016-11-28T13:52:46.283 回答
1

我需要像你一样以 ISO8601 Zulu 格式2016-11-28T10:34:25.097Z序列化/反序列化日期

我选择使用 ISO8601DateFormat 更改 ObjectMapper 中的日期格式化程序

像这样

@Bean
ObjectMapper getObjectMapper() {
    ObjectMapper objectMapper = new ObjectMapper();
    // some other config...
    objectMapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS);
    objectMapper.setDateFormat(new ISO8601DateFormat());
    return objectMapper;
}
于 2019-12-17T13:18:33.620 回答
0

在我的选项中,ISO 8601 的以下 JsonFormat

@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX")

更好,因为这种格式更易于阅读,并且允许像 ACST 这样的时区,其 UTC 偏移量也为 +09:30。

于 2018-06-25T08:54:39.773 回答