db.collection.find({},{"fieldName":1}) 的 JacksonDB 等价物是什么?

What is the JacksonDB equivalent of db.collection.find({},{"fieldName":1})?

我是 Jackson DB 的新手。现在我知道要使用 Jackson 获取集合的整个文档列表,我们需要做:

COllectionClass.coll.find().toArray();

Jackson DB 等同于 mongodb 命令:

db.collection.find()

那么什么是 Jackson DB 等同于 say :

db.collection.find({},{"fieldName":1, "_id":0}) 

鉴于 here,这可能对您有所帮助。 (未测试)

coll.find(DBQuery.is(),//add your criteria for search here
    DBProjection.include("fieldName")).toArray();