如何将没有 AUTO_INCRMENT 主键的现有数据库架构转换为具有 AUTO_INCRMENT 主键的键?

发布于 2024-12-07 11:42:06 字数 192 浏览 1 评论 0原文

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

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

发布评论

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

评论(1

清泪尽 2024-12-14 11:42:06

最安全的是使用 mysql AUTO_INCRMENT 时创建表

mysql> ALTER TABLE tbl AUTO_INCREMENT = 100;

时 ,如果您想以 1 以外的 AUTO_INCRMENT 值开始,您可以使用 CREATE TABLE 或 ALTER TABLE 设置该值,如下所示:迁移到mysql。您可以使用 hibernate id 生成器 increment,它是通过在启动时从最大主键值开始计数而构建的。

真的很重要!!!与 mysql AUTO_INCRMENT 相比,在集群中使用增量并不安全。

增量生成器

一个返回long的IdentifierGenerator,通过计数构造
从启动时的最大主键值开始。在以下环境中使用不安全
集群!

支持但通常不需要的映射参数:表、列。
(tables 参数指定了以逗号分隔的表列表
名称。)

增量

生成 long、short 或 int 类型的标识符,仅当没有其他进程存在时这些标识符才是唯一的
将数据插入同一个表中。不要在集群中使用。

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:

mysql> ALTER TABLE tbl AUTO_INCREMENT = 100;

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.

IncrementGenerator

An IdentifierGenerator that returns a long, constructed by counting
from the maximum primary key value at startup. Not safe for use in a
cluster!

Mapping parameters supported, but not usually needed: tables, column.
(The tables parameter specified a comma-separated list of table
names.)

increment

generates identifiers of type long, short or int that are unique only when no other process is
inserting data into the same table. Do not use in a cluster.

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