如何使用最新的mongojack插入Date对象?

时间:2018-11-19 21:28:43

标签: mongodb mongo-java-driver mongojack

所以在我的对象中,插入时我有private Date date;,我得到了这个异常:

Caused by: com.fasterxml.jackson.databind.JsonMappingException: JsonGenerator of type org.mongojack.internal.object.document.DocumentObjectGenerator not supported: org.mongojack.internal.DateSerializer is designed for use only with org.mongojack.internal.object.BsonObjectGenerator or org.mongojack.internal.stream.DBEncoderBsonGenerator or com.fasterxml.jackson.databind.util.TokenBuffer (through reference chain: com.test.DocumentWrapper["date"])

我正在尝试通过该日期字段设置mongo TTL。

2 个答案:

答案 0 :(得分:2)

最近我遇到了同样的问题:通过MongoJack将日期作为Date对象存储到MongoDB中。 首先,我使用了MongoJack 2.10.0版本。 并且它需要创建自己的Serializer和Deserializer。

public class Serializer extends JsonSerializer<DateTime> {

    @Override
    public void serialize(DateTime value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
        gen.writeObject(new Date(value.getMillis()));
    }
}

public class Deserializer extends JsonDeserializer<DateTime> {

private static final DateDeserializer DATE_DESERIALIZER = new DateDeserializer();

    @Override
    public DateTime deserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException {
        Date date = DATE_DESERIALIZER.deserialize(p, ctxt);
        return date == null ? null : new DateTime(date);
    }
}

.....
@JsonSerialize(using = EdunavJsonDateTimeSerializer.class)
@JsonDeserialize(using = EdunavJsonDateTimeDeserializer.class)
private DateTime testDate;

public DateTime getTestDate() {
    return testDate;
}

public void setTestDate(DateTime testDate) {
    this.testDate = testDate;
}
......

在我的情况下,我将Date转换为joda DateTime以便与代码保持一致,但是可以更改为其他类型(LocalDateTime,OffsetDateTime等)

答案 1 :(得分:1)

要解决此问题,请使用已修复此错误的2.10.0版本。