Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Flyway 提供了基于目录 /data/migration 执行迁移的框架
我的应用程序支持 Oracle、SQLServer 或 MySQL,我想将脚本保留为 /data/migration/oracle 和 /data/migration/sqlserver 等...
应用程序可以部署在 Oracle、SQLServer 或 MySQL 上。如何使用 Spring 集成通知 Flyway 框架使用特定的数据库部署迁移?
您将为每个数据库传递不同的位置。你可能有占位符。我已经在 Maven 插件中完成了,只有需要更改的是
<locations> <location>db/${database.type}</location> </locations>