Sử dụng Document.parse(String json)
từ org.bson.Document
. Nó trả về đối tượng Tài liệu. Đây là ví dụ từ hướng dẫn MongoDb chính thức
.
Bản gốc:
{
$set: { "size.uom": "cm", status: "P" },
$currentDate: { lastModified: true }
}
Bạn có thể chạy trong java bằng:
collection.updateMany(new Document(),Document.parse("{\n" +
" $set: { \"size.uom\": \"cm\", status: \"P\" },\n" +
" $currentDate: { lastModified: true }\n" +
" }"));