Skip to content

Instantly share code, notes, and snippets.

@dmregister
Created June 25, 2015 13:58
Show Gist options
  • Save dmregister/31bdfc3e903bbd7f3cfa to your computer and use it in GitHub Desktop.
Save dmregister/31bdfc3e903bbd7f3cfa to your computer and use it in GitHub Desktop.
get mongo id from an update
BasicDBObject doc = new BasicDBObject( "name", "Matt" );
collection.insert( doc );
ObjectId id = (ObjectId)doc.get( "_id" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment