sql >> データベース >  >> NoSQL >> MongoDB

春のデータmongodbグループ

    TypedAggregationを変更します 以下に一部を追加し、studentsを追加します StudentResultsへのフィールド

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

    $$ROOTはドキュメント全体をプッシュします。

    更新:

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



    1. Redis-値がアクティブに書き込まれなくなったときにイベントをトリガーする方法はありますか?

    2. MongoDBは行方不明の日を埋めます

    3. MongoDBはSQLインジェクションの混乱をどのように回避しますか?

    4. MongoDBインストールのセキュリティを向上させるための3つの簡単なステップ