Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从控制台,我可以作为 db.test.update({name:'abc'}, {$pull: {'child': {'age':10}}}) 操作。
如何使用 Java 中的 spring-data-mongodb 编写此指令?我得到了 mongoTemplate。我知道我需要调用 Update.pull()。但我不知道细节。
感谢您的答复。
update.pull("child", new BasicDBObject("age", 10)); mongoOperation.updateMulti(query, update, collectionName);