我有一个java.time.Instant
的实体用于创建数据字段:
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class Item {
private String id;
private String url;
private Instant createdDate;
}
我使用com.fasterxml.jackson.databind.ObjectMapper
将项目保存为Elasticsearch为JSON:
bulkRequestBody.append(objectMapper.writeValueAsString(item));
ObjectMapper
将此字段序列化为对象:
"createdDate": {
"epochSecond": 1502643595,
"nano": 466000000
}
我正在尝试注释@JsonFormat(shape = JsonFormat.Shape.STRING)
,但它对我没用。
我的问题是如何将此字段序列化为2010-05-30 22:15:52
字符串?
答案 0 :(得分:26)
一种解决方案是使用jackson-modules-java8。然后,您可以向对象映射器添加JavaTimeModule
:
ObjectMapper objectMapper = new ObjectMapper();
JavaTimeModule module = new JavaTimeModule();
objectMapper.registerModule(module);
默认情况下,Instant
被序列化为纪元值(单个数字中的秒数和纳秒数):
{"createdDate":1502713067.720000000}
您可以通过在对象映射器中设置来更改它:
objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
这将产生输出:
{"createdDate":"2017-08-14T12:17:47.720Z"}
上述两种格式都是反序列化的,无需任何其他配置。
要更改序列化格式,只需在字段中添加JsonFormat
注释:
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "UTC")
private Instant createdDate;
您需要设置时区,否则Instant
无法正确序列化(抛出异常)。输出将是:
{"createdDate":"2017-08-14 12:17:47"}
如果您不想(或不能)使用java8模块,另一种方法是使用java.time.format.DateTimeFormatter
创建自定义序列化程序和反序列化程序:
public class MyCustomSerializer extends JsonSerializer<Instant> {
private DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").withZone(ZoneOffset.UTC);
@Override
public void serialize(Instant value, JsonGenerator gen, SerializerProvider serializers) throws IOException, JsonProcessingException {
String str = fmt.format(value);
gen.writeString(str);
}
}
public class MyCustomDeserializer extends JsonDeserializer<Instant> {
private DateTimeFormatter fmt = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss").withZone(ZoneOffset.UTC);
@Override
public Instant deserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException {
return Instant.from(fmt.parse(p.getText()));
}
}
然后使用这些自定义类注释该字段:
@JsonDeserialize(using = MyCustomDeserializer.class)
@JsonSerialize(using = MyCustomSerializer.class)
private Instant createdDate;
输出将是:
{"createdDate":"2017-08-14 12:17:47"}
一个细节是,在序列化字符串中,您将丢弃第二部分(小数点后的所有内容)。因此,在反序列化时,无法恢复此信息(它将被设置为零)。
在上面的示例中,原始Instant
为2017-08-14T12:17:47.720Z
,但序列化字符串为2017-08-14 12:17:47
(没有秒数),因此在反序列化时生成的Instant
是2017-08-14T12:17:47Z
(丢失.720
毫秒)。
答案 1 :(得分:2)
您需要添加以下依赖
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.6.5</version>
</dependency>
然后注册模块如下:
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.findAndRegisterModules();
答案 2 :(得分:2)
对于希望解析Java 8时间戳的用户。您的POM中需要jackson-datatype-jsr310
的最新版本,并注册了以下模块:
ObjectMapper objectMapper = new ObjectMapper();
objectMapper.registerModule(new JavaTimeModule());
objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
测试此代码
@Test
void testSeliarization() throws IOException {
String expectedJson = "{\"parseDate\":\"2018-12-04T18:47:38.927Z\"}";
MyPojo pojo = new MyPojo(ZonedDateTime.parse("2018-12-04T18:47:38.927Z"));
// serialization
assertThat(objectMapper.writeValueAsString(pojo)).isEqualTo(expectedJson);
// deserialization
assertThat(objectMapper.readValue(expectedJson, MyPojo.class)).isEqualTo(pojo);
}
答案 3 :(得分:2)
以下是一些Instant
格式的Kotlin代码,因此它不包含毫秒,您可以使用自定义日期格式程序
ObjectMapper().apply {
val javaTimeModule = JavaTimeModule()
javaTimeModule.addSerializer(Instant::class.java, Iso8601WithoutMillisInstantSerializer())
registerModule(javaTimeModule)
disable(WRITE_DATES_AS_TIMESTAMPS)
}
private class Iso8601WithoutMillisInstantSerializer
: InstantSerializer(InstantSerializer.INSTANCE, false, DateTimeFormatterBuilder().appendInstant(0).toFormatter())
答案 4 :(得分:1)
您可以使用已经用JavaTimeModule配置的Spring ObjectMapper。只是从Spring上下文中注入它,而不使用new ObjectMapper()
。
答案 5 :(得分:1)
如果使用Spring,并且spring-web
在类路径中,则可以使用ObjectMapper
创建一个Jackson2ObjectMapperBuilder
。它在方法registerWellKnownModulesIfAvailable
中注册以下常用模块。
com.fasterxml.jackson.datatype.jdk8.Jdk8Module
com.fasterxml.jackson.datatype.jsr310.JavaTimeModule
com.fasterxml.jackson.datatype.joda.JodaModule
com.fasterxml.jackson.module.kotlin.KotlinModule
其中一些模块已合并到Jackson 3中;参见here。
答案 6 :(得分:0)
对于我来说,注册JavaTimeModule就足够了:
ObjectMapper objectMapper = new ObjectMapper();
JavaTimeModule module = new JavaTimeModule();
objectMapper.registerModule(module);
messageObject = objectMapper.writeValueAsString(event);
在“对象”事件中,我有一个类型为“即时”的字段。
在反序列化中,您还需要注册Java时间模块:
ObjectMapper objectMapper = new ObjectMapper().registerModule(new JavaTimeModule());
Event event = objectMapper.readValue(record.value(), Event.class);