我正在寻找翻译来更改此内容:
getCollection('migrate').aggregate([ { "$project": { "Contrat": {"Field1":"$Field1", "Field2":"$Field2"}, "Formule": {"Field3":"$Field3", "Field4":"$Field4"} }}, { "$project": { "Contrats": {"Contrat":"$Contrat", "Formule":"$Formule"} }} ])
到MongoJava聚合框架。就像是 :
AggregationOperation project = Aggregation.project("Field1,Field2"); // while naming it "Contrat" AggregationOperation project2 = Aggregation.project("Field3,Fiel4"); // while naming it Formule AggregationOperation project3 = Aggregation.project("Contrat,Formule"); // while naming it " Contrats" AggregationOperation out = Aggregation.out("test"); Aggregation aggregation = Aggregation.newAggregation(project, project2, project3, out); mongoTemplate.aggregate(aggregation, "<nameOfInitialCollection>", Class.class);
我在文档中找不到答案,我认为它太糟糕了,否则我可能会迷失其中(|哑巴)。
我会先谢谢你
您可以使用以下聚合。
AggregationOperation project = Aggregation.project(). and("Contrat").nested(Fields.fields("Field1","Field2")). and("Formule").nested(Fields.fields("Field3","Field4")); AggregationOperation project2 = Aggregation.project(). and("Contrats").nested(Fields.fields("Contrat","Formule")). AggregationOperation out = Aggregation.out("test"); Aggregation aggregation = Aggregation.newAggregation(project, project2, out); mongoTemplate.aggregate(aggregation, "<nameOfInitialCollection>", Class.class);