Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

MongoDB seems to return BSON/JSON objects.

I thought that surely you'd be able to retrieve values as Strings, ints etc. which can then be saved as POJO.

I have a DBObject (instantiated as a BasicDBObject) as a result of iterating over a list ... (cur.next()).

Is the only way (other than using some sort of persistence framework) to get the data into a POJO to use a JSON serlialiser/deserialiser?

My method looks like this:

public List<User> findByEmail(String email){
         DBCollection userColl;
         try {
            userColl = Dao.getDB().getCollection("users"); } catch (UnknownHostException e) { e.printStackTrace(); } catch (MongoException e) { e.printStackTrace();}
            DBCursor cur = userColl.find();
            List<User> usersWithMatchEmail = new ArrayList<User>();

            while(cur.hasNext()) {
               // this is where I want to convert cur.next() into a <User> POJO
               usersWithMatchEmail.add(cur.next());
            }
        return null;
    }

EDIT: It's pretty obvious, just do something like this.

share|improve this question
Stupid me, you can just call get(<key>) on a DBObject and get the value. I'll post the code. – Ankur Oct 7 '11 at 7:39

2 Answers

up vote 4 down vote accepted

There is a few java libs that can help you with it:

share|improve this answer
Thanks, for now I'm trying to learn the Java API but will use one of those eventually. – Ankur Oct 7 '11 at 7:39
+1 for spring-data-mongodb, its fantastic. Has annotations to specify document ID, field names, doc references; be aware there is no support for cascading saves: static.springsource.org/spring-data/data-mongodb/docs/current/… – Andrew B Mar 1 '12 at 11:17

You can use GSON library provided by Google. Here is the example of it. There are many other api that you can use to convert json into pojo like jettision api,etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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