2018-05-23 hibernate config 文件中h

2018-05-23  本文已影响0人  咯小屋

1.先引入配置的文件

    <hibernate-configuration>
        <session-factory>
                ....
            <property name="hibernate.hbm2ddl.auto">update</property>
                .....
        </session-factory>
    </hibernate-configuration>

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

分别的意思

上一篇 下一篇

猜你喜欢

热点阅读