您的位置:首页 > 其它

关于Hibernate一个配置参数hibernate.hbm2ddl.auto

2013-07-31 08:12 423 查看

关于Hibernate一个配置参数hibernate.hbm2ddl.auto

分类:
JSF + JPA + Spring 2007-11-11 22:49
6624人阅读
评论(0)
收藏
举报

hibernate数据库propertiesdatabaseschemaspring

这两天在整理Spring + JPA(Hibernate实现),从网上copy了一段Hibernate连接参数的配置。


<properties>


<property name="hibernate.show_sql" value="true" />


<property name="hibernate.hbm2ddl.auto" value="create" />


</properties>

结果在测试时,老是发现数据库表数据丢失。这个参数以前没怎么用,查了一圈其它的东东,最后才定位到这个上面。赶紧查了一下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.请慎重使用此参数,没必要就不要随便用。

2.如果发现数据库表丢失,请检查hibernate.hbm2ddl.auto的配置
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: