标签: java google-cloud-datastore jdo persistence-manager
如何在不关闭对象的情况下使用PersistenceManager更新对象时提交数据库?
答案 0 :(得分:1)
您需要提交交易。您无需关闭PersistenceManager。
PersistenceManager p; ... p.currentTransaction().begin(); .... //do the work p.currentTransaction().commit();