Skip to content

Instantly share code, notes, and snippets.

View kerbymart's full-sized avatar

@kerbymart kerbymart

  • divroll
  • Philippines
View GitHub Profile
Mungo mungo = new Mungo();
DB testDB = mungo.getDB("testDB");
DBCollection messages = testDB.createCollection("Message");
BasicDBObject obj
= new BasicDBObject("{\"hello\" : \"world\"}")
.append("hi", "there");
.append("good", "morning");
WriteResult wr = messages.insert(obj); // Done!
Greeting greeting = messages.findOne(obj.getId()).as(Greeting.class); // Get it