JPA IdGeneration 策略 AUTO
我想要一个具有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将 id 字段声明为:
其中 PenetatingIdGenerator 是您的自定义 ID 生成器实现的 IdentifierGenerator 接口。现在,您可以根据需要根据底层数据库生成 ID。
无论如何,您的应用程序都会知道 wich 数据库是底层的,因为您需要在配置文件中定义不同的方言等。
You declare id field as:
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.
对于注释 @GenerateValue(strategy = GenerationType.AUTO),
JPA
持久性提供程序将为特定数据库采取适当的策略。对于 Oracle 数据库,这将是SEQUENCE
,如果您不指定任何内容,Hibernate 将使用单个全局序列,即hibernate_sequence
。For annotation
@GeneratedValue(strategy = GenerationType.AUTO)
, theJPA
persistence provider will take an appropriate strategy for the particular database. For Oracle database, this will beSEQUENCE
and, if you will not specify anything, Hibernate will use a single global sequence i.ehibernate_sequence
.