Is there an easy way to get the ID (ObjectID) of the last inserted document of a mongoDB instance using the Java driver?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Hate to answer my own question, but I just realized you can do this:
|
|||||||
|
|
I do not know about the Java driver but for posterity, the getLastError command can be run to get the _id of a write, even an upsert (as of 1.5.4) |
|||
|
|
|
It's safe to do
if you look at driver code
|
|||||||
|
|
After a document is inserted into the MongoDB collection, the successful insertion should update required fields (viz. _id). You may query the inserted object for the _id. |
|||
|
|
|
This is insert operation:
After insert u get last inserted id:
after getting value convert to inter type. |
|||
|
|