hibernate主鍵產生器的可選項說明:
1) assigned
主鍵由外部程式負責生成,無需hibernate參與。
2) hilo
通過hi/lo 演算法實現的主鍵生成機制,需要額外的資料庫表儲存主鍵生成歷史狀態。
3) seqhilo
與hilo 類似,通過hi/lo 演算法實現的主鍵生成機制,只是主鍵歷史狀態儲存在sequence中,適用於支援sequence的資料庫,如oracle。
4) increment
主鍵按數值順序遞增。此方式的實現機制為在當前應用例項中維持乙個變數,以儲存著當前的最大值,之後每次需要生成主鍵的時候將此值加1作為主鍵。
這種方式可能產生的問題是:如果當前有多個例項訪問同乙個資料庫,那麼由於各個例項各自維護主鍵狀態,不同例項可能生成同樣的主鍵,從而造成主鍵重複異常。因此,如果同一資料庫有多個例項訪問,此方式必須避免使用。
5) identity
採用資料庫提供的主鍵生成機制。如db2、sql server、mysql中的主鍵生成機制。
6) sequence
採用資料庫提供的sequence 機制生成主鍵。如oralce 中的sequence。
7) native
由hibernate根據底層資料庫自行判斷採用identity、hilo、sequence其中一種作為主鍵生成方式。
8) uuid.hex
由hibernate基於128 位唯一值產生演算法生成16 進製數值(編碼後以長度32 的字串表示)作為主鍵。
9) uuid.string
與uuid.hex 類似,只是生成的主鍵未進行編碼(長度16)。在某些資料庫中可能出現問題(如postgresql)。
10) foreign
使用外部表的字段作為主鍵。
一般而言,利用uuid.hex式生成主鍵將提供最好的效能和資料庫平台適應性。
另外由於常用的資料庫,如oracle、db2、sqlserver、mysql 等,都提供了易用的主鍵生成機制(auto-increase 字段或者sequence)。我們可以在資料庫提供的主鍵生成機制上,採用generator-class=native的主鍵生成方式。不過值得注意的是,一些資料庫提供的主鍵生成機制在效率上未必最佳,大量併發insert資料時可能會引起表之間的互鎖。
資料庫提供的主鍵生成機制,往往是通過在乙個內部表中儲存當前主鍵狀態(如對於自增型主鍵而言,此內部表中就維護著當前的最大值和遞增量),之後每次插入資料會讀取這個最大值,然後加上遞增量作為新記錄的主鍵,之後再把這個新的最大值更新回內部表中,這樣,一次insert操作可能導致資料庫內部多次表讀寫操作,同時伴隨的還有資料的加鎖解鎖操作,這對效能產生了較大影響。
因此,對於併發insert要求較高的系統,推薦採用uuid.hex 作為主鍵生成機制。
如果需要採用定製的主鍵產生演算法,則在此處配置主鍵生成器,主鍵生成器必須實現net.sf.hibernate.id.identifiergenerator介面。
例如:我們可以寫乙個自己的主鍵生成類myidentifiergenerator並且實現public serializable generate(sessionimplementor session, object object)
throws hibernateexception;方法,**可能是這個樣子:
public
class
myincrementgenerator
implements
identifiergenerator,configurable
return
string.valueof(next);
}public
void
configure(typetype,propertiesparams,dialectd)
throws
=params.getproperty(
"table");
if(table
==null
)table
=params.getproperty(persistentidentifiergenerator.table);
stringcolumn
=params.getproperty(
"column");
if(column
==null
)column
=params.getproperty(persistentidentifiergenerator.pk);
stringschema
=params.getproperty(persistentidentifiergenerator.schema);
returnclass
=type.getreturnedclass();
sql=
"selectmax(to_number("+
column+"
))from"+
(schema
==null
?table:schema+'
.'+table);
}private
void
getnext(connectionconn)
throws
sqlexception
else
sql=
null
;log.debug(
"firstfreeid:"+
next);
}finally}}
然後再需要使用我們自定義的主鍵生成器構造主鍵的資料庫物件所對應的.xml檔案中可以這樣寫:
idname
="uniqueid"
column
="uniqueid"
type
="string"
>
/p>
<
generator
class
="com.core.persistence.myincrementgenerator"
/>
/p>
id>
hibernate 主鍵生成器
hibernate的主鍵生成器 generator元素 表示了乙個主鍵生成器,它用來為持久化類例項生成唯一的標識 1.1 程式設計師自己控制 assigned 1.2 資料庫控制 identity 標識列 自動增長 sequence 1.3 hibernate控制 increment uuid uu...
hibernate主鍵生成器
hibernate的主鍵生成器 generator元素 表示了乙個主鍵生成器,它用來為持久化類例項生成唯一的標識 uitl包裡 工具類 功能 1.簡化 2.測試相關配置是否成功 package com.zking.two.util import org.hibernate.session impor...
hibernate的主鍵生成器
1 程式設計師自己控制 assigned assigned資料庫主鍵增長方式,主鍵必須是手動分配的,如果不分配,就出錯了。2 資料庫控制 identity 標識列 自動增長 sequence 3 hibernate控制 increment uuid uuid.hex 其它 native 主鍵生成器要...