我想在Spring Boot应用程序中获取此MongoDB查询的结果。

db.getCollection('contentSource').aggregate( [ { $sort: { "modified": -1 } },
{ $group: { _id: "$sourceId", cs: { $push: "$$ROOT" } }},
{ $replaceRoot: { newRoot: { $arrayElemAt: ['$cs', 0] } }} ] )

有谁知道如何将replaceRoot添加到我的聚合中?

最佳答案

    SortOperation sortOperation = new SortOperation(new Sort(Sort.Direction.ASC,"modified"));

        GroupOperation groupOperation = group("sourceId").push("$$ROOT").as("cs");

        Aggregation aggregation = newAggregation( sortOperation , groupOperation);

AggregationOperation replaceRoot = Aggregation.replaceRoot().withValueOf(ArrayOperators.ArrayElemAt.arrayOf("cs").elementAt(0));

        AggregationResults<Document> result = mongoTemplate.aggregate(aggregation,"contentSource", replaceRoot,  Document.class);


        return result.getMappedResults();

10-04 10:34