微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 通过Spring MongoTemplate进行聚合以获取集合的最大值

我想在最近的日期找到用户(假设User对象有一个日期字段).数据存储在MongoDB中,并通过Spring MongoTemplate访问.

原始数据示例:

{userId:1, date:10}
{userId:1, date:20}
{userId:2, date:50}
{userId:2, date:10}
{userId:3, date:10}
{userId:3, date:30}

查询应该返回

 {{userId:1, date:20}, {userId:2, date:50}, {userId:3, date:30}}

我正在使用的聚合方法

db.table1.aggregate({$group:{'_id':'$userId', 'max':{$max:'$date'}}}, 
{$sort:{'max':1}}).result

解决方法:

您可以先按日期DESC对其进行排序,然后选择第一个用户ID分组

final Aggregation aggregation = newAggregation(
    Aggregation.sort(Sort.Direction.DESC, "date"),
    Aggregation.group("userId").first("date").as("Date")
);

final AggregationResults<User> results = mongoTemplate.aggregate(aggregation, "user", User.class);

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐