实体管理器正在重新创建表

发布于 2024-12-19 22:50:39 字数 66 浏览 2 评论 0原文

我的问题是,每次执行应用程序时,实体管理器都会删除表并创建它们。 我想从数据库中检索数据,那么如何防止它创建新表?谢谢

My problem is with the entity manager every time i excute my application it drops tables and the creates them.
I want to retrive data from the data base so how to prevent it from creating new tables? thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-26 22:50:39

对于 hibernate,请在 persistence.xml 中设置 hibernate.hbm2ddl.auto 属性进行验证。

对于 eclipselink,请使用 eclipselink.ddl- Generation 属性为 NONE

这将防止 EntityManager 在每次执行时删除架构。

For hibernate, set your hibernate.hbm2ddl.auto propery in persistence.xml to validate.

For eclipselink, use the eclipselink.ddl-generation property to NONE.

This will prevent the EntityManager from dropping the schema with every execution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文