JPA IdGeneration 策略 AUTO

发布于 2024-10-29 00:44:39 字数 447 浏览 3 评论 0原文

我想要一个具有 AUTO IdGeneration 策略的实体,我需要它在 Oracle 和 MySQL 上都能工作,并且在 Oracle 的情况下,我需要为每个实体指定序列名称。

当我将主键注释为:

@Id
@Column(name="id")
@GeneratedValue(strategy= GenerationType.AUTO, generator="sequence")

我在 MySQL 上遇到错误,序列生成器未知。

如果我使用,

@Id
@Column(name="id")
@GeneratedValue(strategy= GenerationType.AUTO)

我无法为每个表指定序列名称。 有办法解决这个问题吗?

我使用 Hibernate 作为我的 JPA 提供程序

I want to have an entity with AUTO IdGeneration strategy, I need it work both on Oracle and MySQL, and I need to specify sequence names for each entit in case of Oracle.

When I annotate the primary key as:

@Id
@Column(name="id")
@GeneratedValue(strategy= GenerationType.AUTO, generator="sequence")

I've got an error on MySQL that sequence generator is unknown.

and if I use

@Id
@Column(name="id")
@GeneratedValue(strategy= GenerationType.AUTO)

I can not specify sequence name for each table.
Is it a way to solve this problem?

I use Hibernate as my JPA provider

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

2024-11-05 00:44:39

您将 id 字段声明为:

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY,
    generator = "LegacyIdGenerator")
@GenericGenerator(
    name = "LegacyIdGenerator",
    strategy = "com.backend.hibernate.PenetratingIdGenerator")

其中 PenetatingIdGenerator 是您的自定义 ID 生成器实现的 IdentifierGenerator 接口。现在,您可以根据需要根据底层数据库生成 ID。
无论如何,您的应用程序都会知道 wich 数据库是底层的,因为您需要在配置文件中定义不同的方言等。

You declare id field as:

@Id
@GeneratedValue(strategy = GenerationType.IDENTITY,
    generator = "LegacyIdGenerator")
@GenericGenerator(
    name = "LegacyIdGenerator",
    strategy = "com.backend.hibernate.PenetratingIdGenerator")

where PenetratingIdGenerator is your custom ID generator implemented IdentifierGenerator interface. Now you can generate ID as you want in dependency of your underlying database.
In any way your application will know wich db is underlying because you need define different dialects and etc in config files.

時窥 2024-11-05 00:44:39

对于注释 @GenerateValue(strategy = GenerationType.AUTO),JPA 持久性提供程序将为特定数据库采取适当的策略。对于 Oracle 数据库,这将是 SEQUENCE,如果您不指定任何内容,Hibernate 将使用单个全局序列,即 hibernate_sequence

@Id
@GeneratedValue(strategy=GenerationType.AUTO, generator="seq_gen_default")
@SequenceGenerator(name="seq_gen_default", sequenceName="ENTITY_SEQ")
private Long id;

For annotation @GeneratedValue(strategy = GenerationType.AUTO), the JPA persistence provider will take an appropriate strategy for the particular database. For Oracle database, this will be SEQUENCE and, if you will not specify anything, Hibernate will use a single global sequence i.e hibernate_sequence.

@Id
@GeneratedValue(strategy=GenerationType.AUTO, generator="seq_gen_default")
@SequenceGenerator(name="seq_gen_default", sequenceName="ENTITY_SEQ")
private Long id;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文