JRebel:如何在JRebel中禁用hbm2dll模式导出?

时间:2014-01-16 23:15:11

标签: eclipse hibernate java-ee jrebel

这个问题说明了一切。我正在使用jrebel(5.5)

对于hibernate插件,它说:“如果在org.springframework.orm.hibernate3.LocalSessionFactoryBean上hibernate.hbm2ddl.auto = update或schemaUpdate = true,则启用自动模式更新。”

如何禁用它(或更改)?它会在每次启动/停止时删除并重新创建(不正确)我的数据库模式并清理...

THX

1 个答案:

答案 0 :(得分:1)

赦免, 我发现我的全文搜索失败了。 在persistence.xml中有另一个设置。现在感觉很蠢。

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

将其更改为:

        <property name="hibernate.hbm2ddl.auto" value="none" />

为我做了