Spring/Hibernate GenerationType.AUTO 的数据库备份问题

发布于 2024-08-17 02:16:28 字数 470 浏览 7 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抱着落日 2024-08-24 02:16:28

我想到了四个选项:

  • 使用数据库实用程序进行备份(例如,使用 mysql - 使用 mysqldump)并通过数据库实用程序再次恢复它,而不使用休眠,
  • 因为上述似乎不是一个选项 您可以根据您的备份生成 SQL 查询(向我们展示您的备份格式),并针对数据库批量执行它们(同样无需休眠)
  • 现在,如果您不想使用 SQL 选项, 并想在休眠状态下执行此操作,迭代您的对象并一一保存它们。保存后立即使用正确的 ID 更新对象(使用 .persist() 或使用 HQL)。
  • 您可以在导入时暂时删除 GenerateValue 注释。

综上所述,我认为(再次取决于您的格式)如果引用完整性完好无损,ID 是什么并不重要。

Four options come to my mind:

  • make the backup using a database utility (in case of mysql for example - with mysqldump) and restore it again through a database utility, without hibernate
  • since the above doesn't seem to be an option now, you can generate the SQL queries based on your backup (show us the format of your backup) and execute them as a batch against the dtabase (again without hibernate)
  • if you don't want to use the SQL option and want to do it in hibernate, iterate your objects and save them one by one. immediately after save, update the object with the correct ID (either using .persist() or using HQL).
  • you can temporarily remove the 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文