JDO复制对象
我需要复制 GAE 保存数据对象,并需要更改它的字段值并将其保存为不同的对象。
有没有什么方法可以在不复制 KEY 值的情况下复制对象?
谢谢
I need to copy GAE save data object and need to change it field value and save it as different object.
Is there any way to copy objects without copying KEy value?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用 pm.makeTransient() 然后进入瞬态生命周期状态。然后只需更新 id 和其他任何内容并调用 pm.makePersistent。
Call pm.makeTransient() and its then in transient lifecycle state. Then just update the id and whatever else and call pm.makePersistent.