在 Gradle 中使用 DBDeploy 并使用 hibernate 作为 ORM

发布于 2024-10-25 08:04:59 字数 180 浏览 1 评论 0原文

我希望在 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 技术交流群。

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

发布评论

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

评论(3

抹茶夏天i‖ 2024-11-01 08:05:10

我无法查找有关在 Gradle 上运行 DBDeploy 的任何文档。

几乎任何构建系统都可能调用 ant 任务或 dbdeploy 的命令行界面。

还有一个基于 Hibernate 的迁移管理器,它可以通过查看 Hibernate 类/定义的更改来了解架构更改?

您可能想查看Liquibase。我实际上并没有使用过它(我使用过 dbdeploy),但它具有 hibernate 集成看起来像你想要的。

I am unable to lookup any documentation on running DBDeploy on Gradle.

Almost any build system can likely call either the ant task or the command-line interface for dbdeploy.

Also is there a Hibernate based migrations manager, which can understand schema changes by looking at changes in Hibernate classes/definitions?

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.

怪异←思 2024-11-01 08:05:10

这篇文章展示了如何在 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

洋洋洒洒 2024-11-01 08:05:09

由于 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.

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