如何使用Spring Data和MongoDB更新Object?
我只是做一个template.save()?
public Person update( String ID,String name ) { logger.deBUG("RetrIEving an existing person"); // Find an entry where pID matches the ID query query = new query(where("pID").is(ID)); // Execute the query and find one matching entry Person person = mongoTemplate.findOne("mycollection",query,Person.class); person.setname(name); /** * How do I update the database */ return person; }
最佳答案如果您阅读了MongoOperations / MongoTemplate的javadoc,您会看到save()
执行:
upsert()
所以是的,你可以只更新你的对象并调用save. 总结
以上是内存溢出为你收集整理的如何使用Spring Data和MongoDB更新Object?全部内容,希望文章能够帮你解决如何使用Spring Data和MongoDB更新Object?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)