hibernate.hbm2ddl.auto 配置参数

关键字: hibernate.hbm2ddl.auto
hibernate.cfg.xml 中hibernate.hbm2ddl.auto配置节点如下:
<!--程序执行的时候是否显示真正的sql语句-->
<property name="show_sql">true</property>
<!-- 实体配置文件来自动生成表 -->
<property name="hibernate.hbm2ddl.auto">create</property>
<!-- 关联所有实体配置文件 -->
<mapping resource="com/hibernate/domain/User.hbm.xml"/>

Hibernate Reference Documentation 3.6.1解释如下:
hibernate.hbm2ddl.auto

在 SessionFactory 创建时,自动检查数据库结构,或者将数据库 schema 的 DDL 导出到数据库。使用 create-drop 时,在显式关闭 SessionFactory 时,将删除掉数据库 schema。

例如:validate | update | create | create-drop

详细解释:
validate:    加载hibernate时,验证创建数据库表结构。

create:      每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。

create-drop:  加载hibernate时创建,退出是删除表结构

update:      加载hibernate自动更新数据库结构

你可能感兴趣的:(数据结构,sql,Hibernate,xml)