要連接MongoDB集群,需要使用MongoDB的Java驅動程序。以下是一些步驟可以幫助你連接MongoDB集群:
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>{version}</version>
</dependency>
MongoClientURI uri = new MongoClientURI("mongodb://host1,host2,host3/?replicaSet=rs0");
MongoClient mongoClient = new MongoClient(uri);
在這個例子中,“host1”, “host2”, "host3"是MongoDB集群中的主機名,"rs0"是副本集的名稱。
MongoDatabase database = mongoClient.getDatabase("mydb");
MongoCollection<Document> collection = database.getCollection("mycollection");
Document doc = new Document("name", "John Doe").append("age", 30);
collection.insertOne(doc);
Document query = new Document("name", "John Doe");
Document update = new Document("$set", new Document("age", 31));
collection.updateOne(query, update);
通過這些步驟,你可以連接MongoDB集群并與之交互。希望這可以幫助你。