MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Frühlingsdaten Mongodb-Gruppe von

Ändern Sie Ihre TypedAggregation Teil nach unten und fügen Sie students hinzu Feld zu StudentResults

 TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
               Aggregation.group("firstName").
               push("$$ROOT").as("students"));

$$ROOT pusht das gesamte Dokument.

Aktualisieren:

TypedAggregation<Student> studentAggregation = Aggregation.newAggregation(Student.class,
              Aggregation.group("firstName").
                 push(new BasicDBObject
                       ("_id", "$_id").append
                       ("firstName", "$firstName").append
                       ("lastName", "$lastName")).as("students"));