我想直接在JavaSpringMongoDB数据中,在mongodb的标准聚合结构中,为聚合发送原始json字符串。例如:
[
{ $match: { status: "A" } },
{ $group: { _id: "$cust_id", total: { $sum: "$amount" } } },
{ $sort: { total: -1 } }
]
有类似的吗 BasicQuery
对于聚合?
我希望使用原始字符串构建聚合,因为我希望允许客户端指定聚合查询。
先谢谢你
1条答案
按热度按时间juzqafwq1#
尝试使用spring数据mongodb
MongoTemplate
及Aggregation
. 下面的示例演示了mongodb聚合框架的使用模式。在您的情况下,可以这样编写聚合代码: