我正在尝试使用mongodb java驱动程序通过聚合函数编写组.这是数据库的文档结构.{ _id : ObjectId(58819bd9f16a7802523bc077), Date : 12/19/2016, Time : 4:15:00, Temperature : 65.5, User : A...
我正在尝试使用mongodb java驱动程序通过聚合函数编写组.
这是数据库的文档结构.
{ "_id" : ObjectId("58819bd9f16a7802523bc077"), "Date" : "12/19/2016", "Time" : "4:15:00", "Temperature" : 65.5, "User" : "A", "ThermalComfort" : -1, "settingID" : ObjectId("58819bd6f16a7802523bbdc5") }
{ "_id" : ObjectId("58819bd9f16a7802523bc078"), "Date" : "12/19/2016", "Time" : "4:30:00", "Temperature" : 65.25, "User" : "A", "ThermalComfort" : -1, "settingID" : ObjectId("58819bd6f16a7802523bbdc5") }
我想按“日期”和“时间”分组,仅投影ThermalComfort.我的预期输出为:{date = 12/19/16,time = 0:00:00,listOfTC = [2,1]}. listOfTC是由Array中的每个读数组成的列表:(例如[-1,-1])
这是我写的代码.
AggregateIterable<Document> iterable = themalComfortProfileCollection.aggregate(Arrays.asList(
new Document("$group", new Document("_id", "$Date" + "$Time").append("count", new Document("$sum", 1))),
new Document("$project", new Document("comfortIndex", "$ThermalComfort"))));
但是,如果我打印出文档,我将获得null文档.
for (Document doc : iterable) {
System.out.println(doc);
}
Document{{_id=null}}
你能解释一下哪个部分错了吗?
解决方法:
所以,最后,这段代码返回了我想要的结果.
AggregateIterable<Document> iterable = themalComfortProfileCollection.aggregate(Arrays.asList(
new Document("$group", new Document("_id", new Document("date", "$Date").append("time", "$Time") ).append("ThermalComfortList", new Document("$push", "$ThermalComfort"))),
new Document("$sort", new Document("_id", 1))));
沃梦达教程
本文标题为:mongodb java驱动程序聚合组
基础教程推荐
猜你喜欢
- 详解如何在SpringBoot项目中使用全局异常处理 2023-06-17
- 浅谈springboot如何保证多线程安全 2023-08-11
- SpringBoot结合Redis配置工具类实现动态切换库 2023-04-07
- java – 为什么android.database.SQLException未经检查? 2023-11-09
- 详解Spring的@Value作用与使用场景 2023-07-14
- Spring MVC的完整执行流程和常用组件详解 2022-12-16
- Java JSON处理库之Gson的用法详解 2023-07-15
- tomcat共享多个web应用会话的实现方法 2023-07-31
- 使用JAVA从CSV更新MySQL 2023-11-06
- plantuml画图实现代码画时序图UML用例图 2023-03-11