我正在使用FasterXML将我的对象映射到 MongoDB
我想使用过期索引,但为此,我需要在文档中使用 ISODate 字段。
如果我的 java 类有一个 Date 字段,它会被数字或字符串序列化,使用DateSerializer
如下所述:http ://wiki.fasterxml.com/JacksonFAQDateHandling
我追踪到这个功能:
/**
* Method that will handle serialization of Date(-like) values, using
* {@link SerializationConfig} settings to determine expected serialization
* behavior.
* Note: date here means "full" date, that is, date AND time, as per
* Java convention (and not date-only values like in SQL)
*/
public final void defaultSerializeDateValue(Date date, JsonGenerator jgen)
throws IOException, JsonProcessingException
{
// [JACKSON-87]: Support both numeric timestamps and textual
if (isEnabled(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)) {
jgen.writeNumber(date.getTime());
} else {
jgen.writeString(_dateFormat().format(date));
}
}
这两条路径都没有最终编写标准的 mongodb 日期类型,因此我的索引不起作用。
有没有办法像从 mongo shell 创建文档时那样强制对 javaDate
类型进行序列化?或者,我可以通过“触发器”或类似的方式自动添加该字段吗?(目的是完全绕过序列化器)