嗨,我尝试在mongodb的春季启动中使用rest api来按输入数据查找组。请分享任何逻辑,代码和示例链接。 伙计们,我期待春季启动逻辑。 mongodb聚合框架如何集成。
{
"_id" : "PRODUCT_01",
"productname" : "product1",
"value" : "codesoft"
},
{
"_id" : "PRODUCT_01",
"productname" : "product2",
"value" : "codesoft"
},
{
"_id" : "PRODUCT_01",
"productname" : "product1",
"value" : "codesoft"
}
预期输出 { 产品1:2 产品2:1 } 任何帮助表示赞赏。
答案 0 :(得分:0)
尝试
asInstanceOf
用于Spring Boot
db.testColln.aggregate(
{
$group : {_id : "$productname", total : { $sum : 1 }}
}
);