我想清理和填充两个不同的数据库,以便与 Maven 项目进行集成测试。我使用sql-maven-plugin
,但我无法让它处理不同的数据库(我只能有一个插件声明sql-maven-plugin
,并且在configuration
它之间共享executions
)。
你们是怎么解决的?有什么办法可以解决这个问题吗?
提前致谢!
我想清理和填充两个不同的数据库,以便与 Maven 项目进行集成测试。我使用sql-maven-plugin
,但我无法让它处理不同的数据库(我只能有一个插件声明sql-maven-plugin
,并且在configuration
它之间共享executions
)。
你们是怎么解决的?有什么办法可以解决这个问题吗?
提前致谢!
您可以简单地定义configuration
每个单独execution
部分中的所有内容并根据需要进行配置。而不是共享配置。
所以这里是一个连接两个不同 HSQLDB 数据库的例子:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<version>1.5</version>
<dependencies>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.2.9</version>
</dependency>
<!-- you could add dependencies to other database drivers here -->
</dependencies>
<executions>
<!-- execution against database 1 -->
<execution>
<id>database1</id>
<phase>process-test-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<!-- specific configuration for execution against database1 -->
<configuration>
<driver>org.hsqldb.jdbcDriver</driver>
<url>jdbc:hsqldb:hsql://localhost:9999/database1</url>
<username>sa</username>
<password></password>
<sqlCommand>select count(TYPE_NAME) from INFORMATION_SCHEMA.SYSTEM_TABLES</sqlCommand>
</configuration>
</execution>
<!-- execution against database 2 -->
<execution>
<id>database2</id>
<phase>process-test-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<!-- specific configuration for execution against database2 -->
<configuration>
<driver>org.hsqldb.jdbcDriver</driver>
<url>jdbc:hsqldb:hsql://localhost:8888/database2</url>
<username>sa</username>
<password></password>
<sqlCommand>select count(TYPE_NAME) from INFORMATION_SCHEMA.SYSTEM_TABLES</sqlCommand>
</configuration>
</execution>
</executions>
</plugin>