在 Gradle 中使用 DBDeploy 并使用 hibernate 作为 ORM
我希望在 java 项目中使用版本化数据库迁移工具(例如 DBdeploy),该项目使用 Hibernate 作为 ORM 并使用 Gradle 作为构建系统。我无法查找有关在 Gradle 上运行 DBDeploy 的任何文档。还有一个基于 Hibernate 的迁移管理器,它可以通过查看 Hibernate 类/定义的更改来了解架构更改吗?
I am looking to use a versioned database migrations tool like DBdeploy in a java project which uses Hibernate as the ORM and uses Gradle as the build system. I am unable to lookup any documentation on running DBDeploy on Gradle. Also is there a Hibernate based migrations manager, which can understand schema changes by looking at changes in Hibernate classes/definitions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
几乎任何构建系统都可能调用 ant 任务或 dbdeploy 的命令行界面。
您可能想查看Liquibase。我实际上并没有使用过它(我使用过 dbdeploy),但它具有 hibernate 集成看起来像你想要的。
Almost any build system can likely call either the ant task or the command-line interface for dbdeploy.
You might want to look at Liquibase. I haven't actually used it (I've used dbdeploy), but it has hibernate integration that looks like what you want.
这篇文章展示了如何在 Gradle 中使用 DBDeploy:
http://blog.codeborne.com/2012/09/using -dbdeploy-in-gradle.html
this post shows how to use DBDeploy in Gradle:
http://blog.codeborne.com/2012/09/using-dbdeploy-in-gradle.html
由于 dbdeploy 有一个 Ant 任务,因此从 Gradle 中使用它应该很简单。请参阅 Gradle 用户指南中的使用 Ant 任务。
Since dbdeploy has an Ant task, it should be straightforward to use from Gradle. See Using Ant Tasks in the Gradle User Guide.