小编典典

休眠:仅当数据库不存在时才进行数据库关闭

hibernate

我希望Hibernate制作数据库文件(SQLite),但前提是不存在。

现在在hibernate.cfg.xml中,有以下一行:

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

问题是数据库文件一直在创建,即使该文件存在也是如此。


阅读 352

收藏
2020-06-20

共1个答案

小编典典

尝试将值切换为 update

<property name="hibernate.hbm2ddl.auto">update</property>
2020-06-20