MongoDB
Java-Treiber
Suche…
Erstellen Sie einen anpassbaren Cursor
find(query).projection(fields).cursorType(CursorType.TailableAwait).iterator();
Dieser Code gilt für die MongoCollection
Klasse.
CursorType ist eine Aufzählung und hat folgende Werte:
Tailable
TailableAwait
Entsprechend den alten (<3.0) DBCursor-Typen addOption Bytes:
Bytes.QUERYOPTION_TAILABLE
Bytes.QUERYOPTION_AWAITDATA
Erstellen Sie einen Datenbankbenutzer
So erstellen Sie einen Benutzer dev mit dem Kennwort Kennwort123
MongoClient mongo = new MongoClient("localhost", 27017);
MongoDatabase db = mongo.getDatabase("testDB");
Map<String, Object> commandArguments = new BasicDBObject();
commandArguments.put("createUser", "dev");
commandArguments.put("pwd", "password123");
String[] roles = { "readWrite" };
commandArguments.put("roles", roles);
BasicDBObject command = new BasicDBObject(commandArguments);
db.runCommand(command);
Sammeln von Daten mit Bedingung
testcollection
von Daten aus der testcollection
Sammlung in der testdb
Datenbank, wobei name=dev
import org.bson.Document;
import com.mongodb.BasicDBObject;
import com.mongodb.MongoClient;
import com.mongodb.ServerAddress;
import com.mongodb.client.MongoCollection;
import com.mongodb.client.MongoCursor;
import com.mongodb.client.MongoDatabase;
MongoClient mongoClient = new MongoClient(new ServerAddress("localhost", 27017));
MongoDatabase db = mongoClient.getDatabase("testdb");
MongoCollection<Document> collection = db.getCollection("testcollection");
BasicDBObject searchQuery = new BasicDBObject();
searchQuery.put("name","dev");
MongoCursor<Document> cursor = collection.find(searchQuery).iterator();
try {
while (cursor.hasNext()) {
System.out.println(cursor.next().toJson());
}
} finally {
cursor.close();
}
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow