DBCollection.insert
akceptuje parametr typu DBObject
, List<DBObject>
lub tablica DBObject
s do wstawiania wielu dokumentów jednocześnie. Przekazujesz tablicę ciągów.
Musisz ręcznie wypełnić dokumenty (DBObject
s), wstaw je do List<DBObject>
lub tablica DBObject
s i ewentualnie insert
ich.
DBObject document1 = new BasicDBObject();
document1.put("name", "Kiran");
document1.put("age", 20);
DBObject document2 = new BasicDBObject();
document2.put("name", "John");
List<DBObject> documents = new ArrayList<>();
documents.add(document1);
documents.add(document2);
collection.insert(documents);
Powyższy fragment jest zasadniczo taki sam, jak polecenie, które wydasz w powłoce MongoDB:
db.people.insert( [ {name: "Kiran", age: 20}, {name: "John"} ]);