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

MongoDB-Java-Treiberaktualisierungsunterdokument

Wenn dies das in mongodb festgelegte Update ist:

 {$set: 
        { "numberOfDownloads" : "453", 
          "documents" : 
                { "downloads" : "453"}
        }
 }

Sie können die Document-Klasse folgendermaßen verwenden:

Document upDocValue = new Document("numberOfDownloads": "453")
                      .append("documents.downloads":"453");

Das ergibt:

{
  "numberOfDownloads": "453",
  "documents" : 
    { "downloads" : "453"}
}

Dann können Sie das äußere Dokument erstellen mit:

Document upDocSet = new Document("$set",updDocValue);

Dies sollte Ihnen Folgendes geben:

{$set: 
      { "numberOfDownloads" : "453", 
            "documents" : 
                  { "downloads" : "453"}
      }
}

Dann führen Sie Ihre Abfrage hier aus:

collection.updateOne(upDocQuery,upDocSet);

So haben Sie schließlich:

Document updDocQuery = new Document("_id", "9999996978c9df5b02999999");

Document upDocValue = new Document("numberOfDownloads": "453")
                          .append("documents.downloads":"453");

Document upDocSet = new Document("$set",updDocValue);

collection.updateOne(upDocQuery,upDocSet);