hibernate如何关闭启动时恢复表
时间: 2023-02-11 11:12:37 浏览: 108
Hibernate
可以使用 hibernate.hbm2ddl.auto 属性来控制 Hibernate 启动时对数据库表的操作。将该属性设置为 "validate" 或 "none" 可以禁用 Hibernate 启动时对数据库表的恢复。
例如:
```
<property name="hibernate.hbm2ddl.auto" value="none"/>
```
或者在程序中设置
```
Properties prop = new Properties();
prop.setProperty("hibernate.hbm2ddl.auto", "none");
```
阅读全文