2018-05-23 hibernate config 文件中hibernate.hbm2ddl.auto配置的详解

1.先引入配置的文件

    
        
                ....
            update
                .....
        
    

2. hibernate.hbm2ddl.auto 是什么

hibernate.hbm2ddl.auto参数的作用主要用于:自动创建|更新|验证数据库表结构
其实就是配置数据插入的方式.

hibernate.hbm2ddl.auto 可选值有哪些

hibernate-release-5.1.3.Final\project\etc\hibernate.properties在这文件可以查看的到

  #hibernate.hbm2ddl.auto create-drop
  #hibernate.hbm2ddl.auto create
  #hibernate.hbm2ddl.auto update
  #hibernate.hbm2ddl.auto validate

分别的意思

  • create-drop 每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。
  • create 每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。
  • update 最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据 model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等 应用第一次运行起来后才会。
  • validate 每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。

你可能感兴趣的:(2018-05-23 hibernate config 文件中hibernate.hbm2ddl.auto配置的详解)