如何使用Spring Data和MongoDB更新Object?

前端之家收集整理的这篇文章主要介绍了如何使用Spring Data和MongoDB更新Object?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使用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.

原文链接:https://www.f2er.com/spring/431943.html

猜你在找的Spring相关文章