我如何模仿 Hibernate hbm2ddl“创建” Liquibase 中的行为?
我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是在运行 sql 的 liquibase 更新之前添加一个单独的数据库调用
Liquibase 确实有一个 dropAll 命令,可用于删除模式中的所有内容,但它比在 mysql 上删除/创建数据库慢,并且可能会丢失某些数据库对象。
The easiest way is to add a separate database call before liquibase update that runs the sql
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.