关于hibernate的hibernate.hbm2ddl.auto属性设置

记得以前做项目的时候表结构和数据总是在程序执行的时候无端的修改,查找好长时间,发现是hibernate的数据库映射文件和接口程序导致的,始终没有发现有什么错误,到最后才发现了它!
           <property name="hibernate.hbm2ddl.auto" value="update" />
原文解释如下:
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自动更新数据库结构

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年11月    »
123
45678910
11121314151617
18192021222324
252627282930
搜索
标签列表
网站分类
最新留言
    文章归档
    友情链接

    Powered By Z-BlogPHP 1.7.3

    Copyright Your WebSite.Some Rights Reserved.闽ICP备11018667号-2