我希望Hibernate制作数据库文件(SQLite),但前提是不存在。
现在在hibernate.cfg.xml中,有以下一行:
<property name="hibernate.hbm2ddl.auto">create</property>
问题是数据库文件一直在创建,即使该文件存在也是如此。
尝试将值切换为 update
update
<property name="hibernate.hbm2ddl.auto">update</property>