0

我是杰克逊 DB 的新手。现在我知道要使用 Jackson 获取集合的整个文档列表,我们需要执行以下操作:

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

这是杰克逊 DB 相当于 mongodb 命令:

db.collection.find()

那么杰克逊 DB 相当于说什么:

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

1 回答 1

1

正如这里给出的,这可能对你有帮助。(未测试)

coll.find(DBQuery.is(),//add your criteria for search here
    DBProjection.include("fieldName")).toArray();
于 2015-05-22T12:34:35.313 回答