What is the best method to get the Mongo generated ID of a document inserted via Java.
Java进程插入文件是多面的,这意味着我们需要某种原样的办法来插入和归还物体的识别。
Also, if we setup a unique index, in the event that the object is a duplicate, will an ID be returned?
感谢!
What is the best method to get the Mongo generated ID of a document inserted via Java.
Java进程插入文件是多面的,这意味着我们需要某种原样的办法来插入和归还物体的识别。
Also, if we setup a unique index, in the event that the object is a duplicate, will an ID be returned?
感谢!
Generate the ObjectId early, use it in the insert, and there will no need to have the database return it to you. ObjectId doesn t use a shared sequence number to be unique, so it doesn t matter if you generate one before inserting or retrieve it after.
public ObjectId createThing() {
ObjectId result = new ObjectId();
BasicDBObject thingToInsert = new BasicDbObject();
thingToInsert.put( _id , result);
//set other fields here
collection.insert(thingToInsert);
return result;
}
土 地 Mongo产生的迷魂药在全球是独一无二的,可以从多面应用中安全使用。
generated ObjectId can be obtained from the DbObject under _id key.
If inserted document violates a unique index constraint - java driver may throw an exception, depending on a value of WriteConcern:
http://api.mongodb.org/java/current/com/mongodb/WriteConcern.html
如果其价值更高,那么NORMAL-例外就会被推翻。
可以通过使用行文法,具体针对每个个人添加(或更新)方法,或在全球范围进行写作。
I retrieve the document with _id but when I get the data into my java class eg mobile, _id attribute which is of type ObjectID me I change it set the value of the document in mongodb.
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...