6

我是 Spring 框架的新手。我有我的 mongo 文件

{
    "_id" : ObjectId("527242d584ae917d8bd75c7b"),
    "postTitle" : "Car",
    "postDesc" : "rent",
    "owner" : ObjectId("526a588f84aed6f41cca10bd"),
    "intrest" : []
}

我想要的是搜索具有 id 的文档

"_id" : ObjectId("527242d584ae917d8bd75c7b")

并将其更新为

{
    "_id" : ObjectId("527242d584ae917d8bd75c7b"),
    "postTitle" : "Car",
    "postDesc" : "rent",
    "owner" : ObjectId("526a588f84aed6f41cca10bd"),
    "intrest" : [
        {
            "userId" : ObjectId("526a587d84aed6f41cca10bc"),
            "timestamp" : ISODate("2013-10-31T11:45:25.256Z")

        },
        {
            "userId" : ObjectId("526a587d84aed6f41cca10bc"),
            "timestamp" : ISODate("2013-11-31T11:55:25.256a")

        }

]
}

我的域名是

@Document
public class Post {

     @Id
     private ObjectId _id;
     private String postTitle;
     private String postDesc;
     private ObjectId owner=Global.getCurruser();
     private List<Intrest> intrest = new ArrayList<Intrest>();

// Getters and setters
}

@Document
public class Intrest {

        private ObjectId userId;
    private Date timestamp;

// Getters and setters
}

我应该写什么 upsert 来添加或修改 intrest 数组 [] 中的条目。

请帮忙。

4

2 回答 2

5

我正在使用 spring-mongodb .. 这就是我所做的

Intrest insertObj = new Insert();
//initilize insert obj here ..

Update args = new Update();
args.addToSet("intrest",insertObj);

Query query = new Query(Criteria.where("id").is("527242d584ae917d8bd75c7b"));

// if u want to do upsert 
mongoOperation.findAndModify(query, args, FindAndModifyOptions.options().upsert(true), Post.class);

//if u want to just update
mongoOperation.findAndModify(query, args, Post.class);

我认为您打算做的是更新。Upsert 将修改与给定查询匹配的文档,如果不是,它将创建一个新文档,而 update 只会在找到时修改您的文档。是参考

于 2013-11-12T09:37:07.260 回答
2

我不知道java,但你需要做的就是$pushAll运算符(我真的希望你能找到如何使用java 驱动程序来做到这一点)。

db.collection.update(
  {"_id" : ObjectId("527242d584ae917d8bd75c7b")},
  { $pushAll: { intrest: [ {
            "userId" : ObjectId("526a587d84aed6f41cca10bc"),
            "timestamp" : ISODate("2013-10-31T11:45:25.256Z")

        },
        {
            "userId" : ObjectId("526a587d84aed6f41cca10bc"),
            "timestamp" : ISODate("2013-11-31T11:55:25.256a")

        }] } }
);
于 2013-11-12T07:24:31.543 回答