Hibernate的一个配置参数hibernate.hbm2ddl.auto

这个问题以前朋友文的
感觉确实很好的东西 所以就决定在这里留个脚印~!
<properties>
           <property name="hibernate.show_sql" value="true" />      
           <property name="hibernate.hbm2ddl.auto" value="create" />
</properties>

看到了吗?
hibernate.hbm2ddl.auto value=“create”
看一下hibernate的官方解释:
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
有意思吧~!
竟然可以自动创建|更新|验证数据库表结构。
呵呵 不过如果不是此方面的需求建议set value="none".
下面是这几个属性的解释:
validate               加载hibernate时,验证创建数据库表结构
create                  每次加载hibernate,重新创建数据库表结构,这就是导致数据库表数据丢失的原因。
create-drop         加载hibernate时创建,退出是删除表结构
update                加载hibernate自动更新数据库结构

1.请慎重使用此参数,没必要就不要随便用。如果要用尽量使用update
2.如果发现数据库表丢失,请检查hibernate.hbm2ddl.auto的配置

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