Hibernate 主键generator类型

本文介绍了多种ORM映射中的标识生成策略,包括increment、identity、sequence等,并详细解释了每种策略的工作原理及适用场景。
[b]increment[/b]
用于为long, short或者int类型生成 唯一标识。只有在没有其他进程往同一张表中插入数据时
才能使用。 在集群下不要使用。

[b]identity[/b]
对DB2,MySQL, MS SQL Server, Sybase和HypersonicSQL的内置标识字段提供支持。 返回的标
识符是long, short 或者int类型的。

[b]sequence[/b]
在DB2,PostgreSQL, Oracle, SAP DB, McKoi中使用序列(sequence), 而在Interbase中使用
生成器(generator)。返回的标识符是long, short或者 int类型的。

[b]hilo[/b]
使用一个高/低位算法高效的生成long, short 或者 int类型的标识符。给定一个表和字段(默
认分别是 hibernate_unique_key 和next_hi)作为高位值的来源。 高/低位算法生成的标识符
只在一个特定的数据库中是唯一的。

[b]seqhilo[/b]
使用一个高/低位算法来高效的生成long, short 或者 int类型的标识符,给定一个数据库序列
(sequence)的名字。

[b]uuid[/b]
uses a 128-bit UUID algorithm to generate identifiers of type string that are unique
within a network (the IP address is used). The UUID is encoded as a string of 32
hexadecimal digits in length.

[b]guid[/b]
在MS SQL Server 和 MySQL 中使用数据库生成的GUID字符串。

[b]native[/b]
selects identity, sequence or hilo depending upon the capabilities of the underlying
database.

[b]assigned[/b]
lets the application assign an identifier to the object before save() is called.
This is the default strategy if no <generator> element is specified.

[b]select[/b]
retrieves a primary key, assigned by a database trigger, by selecting the row by
some unique key and retrieving the primary key value.

[b]foreign[/b]
uses the identifier of another associated object. It is usually used in conjunction
with a <one-to-one> primary key association.

[b]sequence-identity[/b]
a specialized sequence generation strategy that utilizes a database sequence for the
actual value generation, but combines this with JDBC3 getGeneratedKeys to return
the generated identifier value as part of the insert statement execution. Thisidstrategy is only supported on Oracle 10g drivers targeted for JDK 1.4. Comments on
these insert statements are disabled due to a bug in the Oracle drivers.
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值