hibernate.hbm2ddl.auto配置詳解
hibernate.cfg.xml 中hibernate.hbm2ddl.auto配置節(jié)點(diǎn)如下:
<properties>
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="create" />
</properties>
Hibernate Reference Documentation 3.3.1解釋如下:
Automatically validate or export schema DDL to the database when the SessionFactory is created.
With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.
eg. validate | update | create | create-drop
其實(shí)這個(gè)hibernate.hbm2ddl.auto參數(shù)的作用主要用于:
自動(dòng)創(chuàng)建|更新|驗(yàn)證數(shù)據(jù)庫(kù)表結(jié)構(gòu)
如果不是此方面的需求建議set value="none"姓言。
-
create:
每次加載hibernate時(shí)都會(huì)刪除上一次的生成的表何荚,然后根據(jù)你的model類再重新來生成新表猪杭,哪怕兩次沒有任何改變也要這樣執(zhí)行,這就是導(dǎo)致數(shù)據(jù)庫(kù)表數(shù)據(jù)丟失的一個(gè)重要原因戒傻。
-
create-drop :
每次加載hibernate時(shí)根據(jù)model類生成表,但是sessionFactory一關(guān)閉,表就自動(dòng)刪除芦倒。
-
update:
最常用的屬性不翩,第一次加載hibernate時(shí)根據(jù)model類會(huì)自動(dòng)建立起表的結(jié)構(gòu)(前提是先建立好數(shù)據(jù)庫(kù)),以后加載hibernate時(shí)根據(jù) model類自動(dòng)更新表結(jié)構(gòu)器钟,即使表結(jié)構(gòu)改變了但表中的行仍然存在不會(huì)刪除以前的行妙蔗。要注意的是當(dāng)部署到服務(wù)器后,表結(jié)構(gòu)是不會(huì)被馬上建立起來的狞谱,是要等 應(yīng)用第一次運(yùn)行起來后才會(huì)跟衅。
-
validate :
每次加載hibernate時(shí)播歼,驗(yàn)證創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu),只會(huì)和數(shù)據(jù)庫(kù)中的表進(jìn)行比較叭莫,不會(huì)創(chuàng)建新表烁试,但是會(huì)插入新值。
注意:
當(dāng)我們把hibernate.hbm2ddl.auto=create時(shí)hibernate先用 hbm2ddl 來生成數(shù)據(jù)庫(kù)schema靖诗。
-
當(dāng)我們把hibernate.cfg.xml文件中hbm2ddl屬性注釋掉支示,這樣我們就取消了在啟動(dòng)時(shí)用hbm2ddl來生成數(shù)據(jù)庫(kù)schema颂鸿。通常 只有在不斷重復(fù)進(jìn)行單元測(cè)試的時(shí)候才需要打開它,但再次運(yùn)行hbm2ddl會(huì)把你保存的一切都刪除掉(drop)败晴。
<blockquote>create配置的含義是:“在創(chuàng)建SessionFactory的時(shí)候,從scema中drop掉所以的表裆蒸,再重新創(chuàng)建它們”糖驴。</blockquote>
注意,很多Hibernate新手在這一步會(huì)失敗辙谜,我們不時(shí)看到關(guān)于Table not found錯(cuò)誤信息的提問感昼。但是,只要你根據(jù)上面描述的步驟來執(zhí)行蜕琴,就不會(huì)有這個(gè)問題凌简,因?yàn)閔bm2ddl會(huì)在第一次運(yùn)行的時(shí)候創(chuàng)建數(shù)據(jù)庫(kù)schema恃逻, 后續(xù)的應(yīng)用程序重啟后還能繼續(xù)使用這個(gè)schema。假若你修改了映射凸郑,或者修改了數(shù)據(jù)庫(kù)schema,你必須把hbm2ddl重新打開一次矛市。
這兩天在整理Spring + JPA(Hibernate實(shí)現(xiàn)),從網(wǎng)上copy了一段Hibernate連接參數(shù)的配置憨愉。
<properties>
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.hbm2ddl.auto" value="create" />
</properties>
結(jié)果在測(cè)試時(shí)思恐,老是發(fā)現(xiàn)數(shù)據(jù)庫(kù)表數(shù)據(jù)丟失。這個(gè)參數(shù)以前沒怎么用鸳址,查了一圈其它的東東,最后才定位到這個(gè)上面。趕緊查了一下Hibernate的參數(shù)配置籽懦,解釋如下:
hibernate.hbm2ddl.auto Automatically validate or export schema DDL to the database when the SessionFactory is
created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.
eg. validate | update | create | create-drop
其實(shí)這個(gè)參數(shù)的作用主要用于:自動(dòng)創(chuàng)建|更新|驗(yàn)證數(shù)據(jù)庫(kù)表結(jié)構(gòu)。如果不是此方面的需求建議set value="none".
其它幾個(gè)參數(shù)的意思厅篓,我解釋一下:
-
validate
加載hibernate時(shí)羽氮,驗(yàn)證創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu)
-
create
每次加載hibernate惫恼,重新創(chuàng)建數(shù)據(jù)庫(kù)表結(jié)構(gòu),這就是導(dǎo)致數(shù)據(jù)庫(kù)表數(shù)據(jù)丟失的原因令宿。
-
create-drop
加載hibernate時(shí)創(chuàng)建腕窥,退出是刪除表結(jié)構(gòu)
-
update
加載hibernate自動(dòng)更新數(shù)據(jù)庫(kù)結(jié)構(gòu)
以上4個(gè)屬性對(duì)同一配置文件下所用有的映射表都起作用
總結(jié):
請(qǐng)慎重使用此參數(shù),沒必要就不要隨便用革娄。
如果發(fā)現(xiàn)數(shù)據(jù)庫(kù)表丟失拦惋,請(qǐng)檢查hibernate.hbm2ddl.auto的配置