我如何模仿 Hibernate hbm2ddl“创建” Liquibase 中的行为?

发布于 2024-10-31 04:23:56 字数 350 浏览 1 评论 0原文

我已经使用 liquibase 1.9.5 一段时间了,并让它取代了创建表并在其中加载固定装置的 hibernate hbm2ddl 策略。由于它是一个 Maven 项目,并且由于我使用 hsqldb (使用 file create=true),因此我只需在目标文件夹中创建 db,以便在测试应用程序时随时拥有一个新的数据库。工作正常,直到我意识到:

1 现在使用 mysql 数据库进行集成测试时,我需要重新创建数据库

2 对于非 Maven,我肯定需要相同的解决方案项目。

那么基本上,当使用 liquibase 而不是 hbm2ddl 时,如何删除和创建数据库?

I've worked with liquibase 1.9.5 for a while now and got it to replace hibernate hbm2ddl strategy of creating tables and loading fixtures in it. Since it's a maven project and since I use hsqldb (using file create=true), I simply create the db in the target folder so that I have a fresh database anytime I test the application. Works fine till that I realize:

1 I will need the database to be recreated when doing integration test using mysql database now

2 I will definitely need the same solution for a non maven project.

So basically how do I drop and create the database when using liquibase as opposed to hbm2ddl?

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

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

发布评论

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

评论(1

佼人 2024-11-07 04:23:56

最简单的方法是在运行 sql 的 liquibase 更新之前添加一个单独的数据库调用

DROP DATABASE X;
CREATE DATABASE X

Liquibase 确实有一个 dropAll 命令,可用于删除模式中的所有内容,但它比在 mysql 上删除/创建数据库慢,并且可能会丢失某些数据库对象。

The easiest way is to add a separate database call before liquibase update that runs the sql

DROP DATABASE X;
CREATE DATABASE X

Liquibase does have a dropAll command which can be used to drop everything in a schema, but it is slower than drop/create database on mysql and may miss some database objects.

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