繁体   English   中英

如何使用 Java 仅查询 MongoDB 中的特定字段?

[英]How to query only the specific fields in MongoDB with Java?

我正在使用 MongoDB 3.2 和 MongoDB Java 驱动程序 3.2。 为了查询文档,我使用以下代码:

Document query = new Document("fetchStatus", new Document("$lte", fetchStatusParam));
ArrayList<Document> unfetchedEvents = dbC_Events.find(query).into(new ArrayList<Document>());

此查询有效,但问题是在这种情况下检索文档的所有字段(类似于 SQL 中的select * )。 为了优化查询性能,我想指定我真正需要的字段并只获取它们。

我找到了几个例子,例如:

BasicDBObject query = new BasicDBObject();
BasicDBObject fields = new BasicDBObject("Name", 1);
coll.find(query, fields);

但它们都是为过时版本的 MongoDB Java 驱动程序设计的,例如 2.4,而我使用的是 3.2。

我的问题:
如何在 MongoDB Java Driver 3.2 中仅查询文档的特定字段?

有一个.projection()方法可以链接到查询结果,它允许您指定字段。

要么表示为文档,使用熟悉且记录良好的 BSON 语法:

    ArrayList<Document> unfecthedEvents = collection.find(
        new Document("fetchStatus", new Document("$lte", fetchStatusParam))
    ).projection(
        new Document("Name",1)
    ).into(new ArrayList<Document>());

或者作为一个fields属性构建器,它实际上只是转换为完全相同的 BSON:

    ArrayList<Document> unfecthedEvents = collection.find(
        new Document("fetchStatus", new Document("$lte", fetchStatusParam))
    ).projection(
            fields(include("Name"))
    ).into(new ArrayList<Document>());

它也对我有用:

BasicDBObject whereQuery = new BasicDBObject();
BasicDBObject fields = new BasicDBObject();     

// the conditions in where query
whereQuery.put("dzeeClient", dzeeClient);
whereQuery.put("recommendationRunType", planView);
whereQuery.put("recommendedPlans.enrolled",employeeViewed);

// the fields to be returned from the query-only loginId, and remove _id
fields.put("loginId", 1); 
fields.put("_id", 0);

FindIterable<Document> cursor = collection.find(whereQuery)
                    .projection(fields).sort(new BasicDBObject("timeStamp",-1)).limit(1);

我正在使用MongoDB 3.2和MongoDB Java驱动程序3.2。 为了查询文档,我使用以下代码:

Document query = new Document("fetchStatus", new Document("$lte", fetchStatusParam));
ArrayList<Document> unfetchedEvents = dbC_Events.find(query).into(new ArrayList<Document>());

该查询有效,但是问题在于,在这种情况下,将检索文档的所有字段(SQL中select *模拟)。 为了优化查询性能,我想指定我真正需要的字段并仅获取它们。

我发现了几个示例,例如:

BasicDBObject query = new BasicDBObject();
BasicDBObject fields = new BasicDBObject("Name", 1);
coll.find(query, fields);

但是它们都是针对MongoDB Java驱动程序的过时版本(例如2.4)而设计的,而我使用的是3.2。

我的问题:
如何仅查询MongoDB Java Driver 3.2中的文档的特定字段?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM