使用Java的MongoDB聚合

我在Java中使用GroupOperation对字段进行分组并计算值,但未获得所需的结果.

我正在使用Mongo Operation使用Java与MongoDB连接.我可以根据“公司”字段进行分组,但计数始终为0.我无法找出原因.

GroupOperation 
group=Aggregation.group("company").sum("company").as("count");
    Aggregation aggregation=Aggregation.newAggregation(group);
    AggregationResults<ResultMap> orderAggregate = 
mongoOperations.aggregate(aggregation,EmpDesc.class,ResultMap.class);

orderAggregate.getMappedResults().forEach(s->System.out.println("^^ 
"+s.toString()));

总是得到:

 ResultMap [company=ABC, count=0]
 ResultMap [company=XYZ, count=0]

解决方法:

它应该是

Aggregation.group("company").count().as("count");

相关文章

MongoTemplate 是Spring Data MongoDB 中的一个核心类,为 S...
笔者今天要分享的是一个项目重构过程中如何将数据库选型由原...
mongodb/mongoTemplate.upsert批量插入更新数据的实现
进入官网下载官网安装点击next勾选同意,点击next点击custom...
头歌 MongoDB实验——数据库基本操作
期末考试复习总结