在MongoCollection中找到

在MongoCollection中找到,第1张

在MongoCollection中找到

尝试创建一个过滤器以传递给该

find()

方法,以获取集合中文档子集。例如,要查找该
_id
字段的值为的文档
test
,请执行以下 *** 作:

import static com.mongodb.client.model.Filters.*;MongoClient client = new MongoClient();MongoDatabase database = client.getDatabase("mydb");MongoCollection<document> collection = database.getCollection("mycoll");document myDoc = collection.find(eq("_id", "test")).first();System.out.println(myDoc.toJson());


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5601127.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存