问题
I need to pull a subdocument in MongoTemplate but cannot figure out how to do it.
My saved document is:
{
"_id" : "FooUser",
"_class" : "com.domain.User",
"tests" : [
{
"variant" : {
"_id" : "C",
"probability" : "0.5"
},
"experiment" : {
"$ref" : "experiment",
"$id" : "MyExperiment2"
}
},
{
"variant" : {
"_id" : "B",
"probability" : "0.5"
},
"experiment" : {
"$ref" : "experiment",
"$id" : "MyExperiment1"
}
}
]
}
I need to remove only the test that has MyExperiment1. Executing the following command works:
db.user.update( {}, {$pull: { "tests":{"experiment.$id":"MyExperiment1"}}}, {multi: true} )
How should I write this using Spring MongoTemplate?
I have tried the following, but does not work:
this.mongoTemplate.updateMulti(new Query(), new Update().pull("tests", "{\"experiment.$id\":\"MyExperiment1\"}"), "user");
Thanks.
回答1:
It seems this works:
this.mongoTemplate.updateMulti(new Query(),
new Update().pull("tests", Query.query(Criteria.where("experiment.$id").is("MyExperiment1"))), USERS_COLLECTION_NAME);
回答2:
Another solution which worked fine for me is the use of a BasicDBObject
into the pull
method's value
param.
See How to code with Spring data MongoDB for db.test.update({name:'abc'}, {$pull: {'child': {'age':10}}})
来源:https://stackoverflow.com/questions/27152868/mongotemplate-pull-subdocument