如何将没有 AUTO_INCRMENT 主键的现有数据库架构转换为具有 AUTO_INCRMENT 主键的键?
我有一个使用 HSQL DB 开发的应用程序,问题是我们正在使用 JPA/Hibernate 将其迁移到 MySQL。 问题是旧模式没有 AUTO_INCRMENT 主键:如何使用 JPA 来使用这样的递增键功能而不修改模式?
是否有一种机制告诉 hibernate 在下一次插入时采用最后一个 INSERTED_ID + 1 ?
多谢,
I have an application which was developed with HSQL DB and the problem is that we are migrating it to MySQL with JPA/Hibernate.
The problem is that the old schema doesn't have an AUTO_INCREMENT primary key : how can I use JPA to use such an incrementing key feature without modifying the schema ?
Is there a mechanism to tell hibernate to take the last INSERTED_ID + 1 for the next insertion ?
thanks a lot,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最安全的是使用 mysql AUTO_INCRMENT 时创建表
时 ,如果您想以 1 以外的 AUTO_INCRMENT 值开始,您可以使用 CREATE TABLE 或 ALTER TABLE 设置该值,如下所示:迁移到mysql。您可以使用 hibernate id 生成器
increment
,它是通过在启动时从最大主键值开始计数而构建的。真的很重要!!!与 mysql AUTO_INCRMENT 相比,在集群中使用增量并不安全。
The safest is to use the mysql AUTO_INCREMENT when creating the table and if you want to start with an AUTO_INCREMENT value other than 1, you can set that value with CREATE TABLE or ALTER TABLE, like this:
If you dont want to add this little modification to the schema while migrating to mysql. You can use the hibernate id generator
increment
that is constructed by counting from the maximum primary key value at startup.Really important !!! Increment is not safe for use in a cluster compared to mysql AUTO_INCREMENT.