【发布时间】:2019-03-06 17:32:02
【问题描述】:
我希望将此片段复制到 Java 代码中:
db.getCollection('admins_comptes_client_ceov4').aggregate([
{$lookup: {from: "contrats_ceov4",localField: "CUSTOMERNUMBER",foreignField: "CUSTOMERNUMBER",as: "arrayForeignObject"}
{$unwind: { path: "$arrayForeignObject", preserveNullAndEmptyArrays: true}},
{$replaceRoot: { newRoot: { $mergeObjects: [ "$arrayForeignObject", "$$ROOT" ] } }},
{ $project: { "arrayForeignObject": 0, "_id": 0 } },
{ $out: "aggregate" }])
到目前为止我在这里:
AggregationOperation lookup = Aggregation.lookup(fromCollection, localField, toMatchWith, "arrayForeignObject");
AggregationOperation unwind = Aggregation.unwind("arrayForeignObject", true);
AggregationOperation replaceRoot = Aggregation.replaceRoot(Aggregation.ROOT);
AggregationOperation project = Aggregation.project("arrayForeignObject").andExclude("_id");
AggregationOperation out = Aggregation.out("aggregate");
Aggregation aggregation = Aggregation.newAggregation(lookup, replaceRoot, unwind, project, out);
mongoTemplate.aggregate(aggregation, initialCollection, AggregateModel.class);
我对以下几点有疑问:
{$replaceRoot: { newRoot: { $mergeObjects: [ "$arrayForeignObject", "$$ROOT" ] } }
我无法成功创建合并对象。
使用以下 java sn-p,AggregationOperation 的结果是:
"$replaceRoot" : { "newRoot" : "$arrayForeignObject" }
当我执行这个 java sn-p 时,我最终得到了一个新集合,里面只有一个外部数组和一个 _id 字段。
有没有人已经遇到过这个问题,可以帮忙吗? 弗里格0
【问题讨论】:
标签: java mongodb aggregation-framework spring-mongodb