因此,在我对象中,当我插入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条答案
按热度按时间e4yzc0pl1#
我最近遇到了同样的问题:通过MongoJack将日期作为Date对象存储到MongoDB中。首先,我使用了MongoJack 2.10.0版本。它需要创建自己的串行器和反串行器。
在我的示例中,我将Date转换为joda DateTime以保持与代码的一致性,但也可以更改为其他类型(LocalDateTime、OffsetDateTime等)。
rsl1atfo2#
要解决此问题,请使用已修复此错误的2.10.0版本。