Spring Data 1.3.0.RC1 ist verfügbar und unterstützt das Aggregation Framework.
Zum Beispiel:Der Shell-Aggregationsbefehl:
db.eft_transactions.aggregate(
{$match:
{
service:"EFT",
source:"MARKUP",
}
},
{$group:
{
_id:"$card_acceptor_id",
tran_count:{$sum:1},
amount_sum:{$sum:"$amount"}
}
}
)
wird so von Java ausgeführt:
AggregationOperation match = Aggregation.match(Criteria.where("service").is("EFT").and("source").is("MARKUP"));
AggregationOperation group = Aggregation.group("card_acceptor").and("amount_sum").sum("amount").and("tran_count").count();
Aggregation aggregation = newAggregation(match, group);
AggregationResults<StoreSummary> result = this.mongoTemplate.aggregate(aggregation, "eft_transactions", StoreSummary.class);
Die Dokumentation ist hier
HINWEIS:Wir mussten kürzlich auf die Verwendung des BUILD-SNAPSHOT-Builds der Version 1.3.0 umsteigen. Diese Änderung erforderte die Änderung von 2 der obigen Zeilen, die sich geändert haben zu:
AggregationOperation group = Aggregation.group("card_acceptor").sum("amount").as("amount_sum").count().as("tran_count");
Aggregation aggregation = Aggregation.newAggregation(match, group);