mongo-jackson-codec icon indicating copy to clipboard operation
mongo-jackson-codec copied to clipboard

Results 3 mongo-jackson-codec issues
Sort by recently updated
recently updated
newest added

`de.undercouch:bson4jackson:2.9.0` doesn't have `de.undercouch.bson4jackson.serializers.BsonSerializer` class anymore. However, this class is imported in `fr.javatic.mongo.jacksonCodec.objectId.IdSerializer` and `fr.javatic.mongo.jacksonCodec.javaTime.serializers.InstantSerializerBase` Is this library abandoned? Jeff Yemin referenced this library in https://jira.mongodb.org/browse/JAVA-2483

I'm trying to do a find on a collection using a OffsetDateTime as one of the find parameters. For example `collection.find(and(eq("config_key", "foo"), lt("started_at", OffsetDateTime.now()))).first();` returns the exception below. I am...

Hi, I'm using the @Id annotation leaving the generation to Mongo, but I'm not sure how to get the generated Id after inserting. Before switching to the jackson codec, I...