We have good support for JSON in java http://blog.locut.us/main/2009/10/14/which-is-the-best-java-json-library.html but what about BSON.

What library do you know that provides BSON support for java? It should obviously be efficient in runtime.

link|improve this question

75% accept rate
feedback

4 Answers

up vote 1 down vote accepted

The BSON site is pointing at this

If you want to use it from MongoDB, take a look at this example

link|improve this answer
1  
Guess I could take the encoding part from Mongo and make it an external library. Was hoping from something more "mature", thanks for the tip. – Maxim Veksler Sep 7 '10 at 8:08
feedback

In order to get our Model in MongoDB we used google gson to convert our model into JSON first and then we used the JSON util parse method from MongoDB to parse our generated JSON string to a DBObject which you can put in your MongoDB. I don't know about performance to be honest.

link|improve this answer
feedback

There is also ebson. I've not tried it...

link|improve this answer
feedback

There is also a rather new BSON4Jackson project, which allows one to use Jackson for handling BSON data. This means full data binding (to/from POJOs), tree model, even streaming (incremental) reading/writing to degree it can be done with BSON format.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.