Hello,
I am using the official java mongodb driver with some minimalistic inhouse framework. Sadly I cannot use mongo-jackson for accessing the mongodb. But I would like to use mongo.jackson for mapping Objects into DBObjects and back.
Do you know, if that is possible?
I only need methods like
DBObject writeDBObject(Object)
and
Object readDBObject(DBObject)
I tried to use jackson directly. But then I have to write all that custom mapping for Dates and Ids and so on.
Thank you very much,
Chris