在决定打开一个问题之前,我读了很多文章(在flyway和stackoverflow上)。主要是解决方案如何设置你的pom,使用maven和flyway围绕3.0版的flyway执行多个数据库。
我有一个要求,我必须使用不同的用户帐户连接到多个模式,并使用flyway执行完全不同的SQL。
我尝试按照article设置我的pom,但它无法识别多个执行标记以及id。它会抛出错误消息
[错误]无法在项目Flyway_001上执行目标org.flywaydb:flyway-maven-plugin:4.0.3:migrate(default-cli):org.flywaydb.core.api.FlywayExce ption:无法连接到数据库。配置网址,用户和密码! - > [帮助1]
我的pom看起来像
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.flyway</groupId>
<artifactId>Flyway_001</artifactId>
<version>1.0-SNAPSHOT</version>
<name>${project.artifactId}-${project.version}</name>
<properties>
<A.db.user>A_DB_USER</A.db.user>
<A.db.password>*******</A.db.password>
<A.db.schema>A_DB_SCHEMA</A.db.schema>
<A.db.url>jdbc:oracle:blah..blah</A.db.url>
<B.db.user>B_DB_USER</B.db.user>
<B.db.password>*******</B.db.password>
<B.db.schema>B_DB_SCHEMA</B.db.schema>
<B.db.url>jdbc:oracle:blah..blah</B.db.url>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>4.0.3</version>
<executions>
<execution>
<id>flyway-A</id>
<configuration>
<url>${A.db.url}</url>
<user>${A.db.user}</user>
<password>${A.db.password}</password>
<schemas>
<schema>${A.db.schema}</schema>
</schemas>
<table>T_HUB_SCHEMA_VERSION</table>
<baselineOnMigrate>false</baselineOnMigrate>
<locations>
<location>filesystem:src/main/resources/db/A</location>
</locations>
</configuration>
</execution>
<execution>
<id>flyway-B</id>
<configuration>
<url>${B.db.url}</url>
<user>${B.db.user}</user>
<password>${B.db.password}</password>
<schemas>
<schema>${B.db.schema}</schema>
</schemas>
<table>T_HUB_SCHEMA_VERSION</table>
<baselineOnMigrate>false</baselineOnMigrate>
<locations>
<location>filesystem:src/main/resources/db/B</location>
</locations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
有没有人尝试使用flyway 4.0连接到多个数据库?如果有人可以提供一些关于我的方法错误的指导,那么如果愿意的话。
答案 0 :(得分:0)
IDE抱怨执行元素下的标签。可以通过指定目标标签来消除投诉,如下所示:
<execution>
<id>some-id</id>
<goals>
<goal>migrate</goal>
</goals>
</execution>