Spring/Hibernate GenerationType.AUTO 的数据库备份问题
我使用 Spring/Hibernate Dao 将我的对象保存在数据库中。现在我必须备份应用程序中的所有数据库。现在,当我尝试读回备份时,我的应用程序崩溃了。现在我发现了这个崩溃的问题。它是 Hibernate,当我想要保存时,它会自动为我的对象创建一个新 ID。
例如,我将 ID 为 4 的对象 a 保存在备份文件中。
现在我读取备份文件。清理我的数据库中的旧内容。将此对象保存回数据库。现在我的对象 id 是例如 5。但它必须是 4。如何防止 hybernate 自动生成我的 id 值?
我应该编写一个额外的 JDBCDao 来导入吗?
这是我的 id 模型属性
@ID
@Column(name="ID")
@GeneratedValue(strategy=GenerationType.AUTO)
private Long id;
感谢您的帮助并原谅我糟糕的英语。
I work with Spring/Hibernate Dao's for saving my Object in the Database. Now I had to backup all my DB inside my application. Now when I try to read my backup back, my application crashed. Now I found the problem for this crashing. It's Hibernate it creates automaticly a new ID for my Object when I want to save.
For example I saved my object a with an Id 4 in my backup file.
Now i read the backup file. Clean my DB from old stuff. Save this object back to db. and now my object id is for example 5. But it has to be 4. How can I prevent hybernate from auto generate my id value?
Should i write an extra JDBCDao for importing ?
Here is my Model attribute for id
@ID
@Column(name="ID")
@GeneratedValue(strategy=GenerationType.AUTO)
private Long id;
Thanks for helping and exuse my bad english.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想到了四个选项:
.persist()
或使用 HQL)。GenerateValue
注释。综上所述,我认为(再次取决于您的格式)如果引用完整性完好无损,ID 是什么并不重要。
Four options come to my mind:
.persist()
or using HQL).GeneratedValue
annotation while importing.That all said, I think (again, depending on your format) that it shouldn't matter that much what the IDs are, if the referential integrity is intact.