我正在尝试编写一个使用sql-maven-plugin删除并重新创建Oracle TimesTen数据库的maven脚本,然后在预集成测试阶段使用dbdeploy应用许多数据库迁移脚本。
这两个插件都需要使用本机的timesten库,当然不能由不同的类加载器加载,产生以下错误:
[ERROR]
java.sql.SQLException: Problems with loading native library/missing methods: Native Library /opt/timesten/TimesTen/tt1122/lib/libttJdbcCS.dylib already loaded in another classloader
我如何具体克服maven中的这些问题?
作为参考,我的pom.xml如下所示:
<?xml version="1.0"?>
<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>
<parent>
<groupId>com.xxx.xxx</groupId>
<artifactId>xxx</artifactId>
<version>x.x.x.x-SNAPSHOT</version>
</parent>
<groupId>x.x.x.x</groupId>
<artifactId>db-reset</artifactId>
<build>
<plugins>
<plugin>
<groupId>com.dbdeploy</groupId>
<artifactId>maven-dbdeploy-plugin</artifactId>
<version>3.0M3</version>
<configuration>
<scriptdirectory>src/sql/dbdeploy-migrations</scriptdirectory>
<driver>${timesten.jdbc.driver.class}</driver>
<url>${timesten.jdbc.url}</url>
<userid>${timesten.user}</userid>
<password>${timesten.password}</password>
<dbms>timesten</dbms>
<delimiter>;</delimiter>
<delimiterType>row</delimiterType>
</configuration>
<dependencies>
<dependency>
<groupId>com.timesten</groupId>
<artifactId>timesten</artifactId>
<version>11.2.2.7.8</version>
<scope>system</scope>
<systemPath>${timesten.jdbc.library.path}</systemPath>
</dependency>
</dependencies>
<executions>
<execution>
<phase>pre-integration-test</phase>
<goals>
<goal>update</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<configuration>
<driver>${timesten.jdbc.driver.class}</driver>
<url>${timesten.jdbc.url}</url>
<username>${timesten.user}</username>
<password>${timesten.password}</password>
</configuration>
<dependencies>
<dependency>
<groupId>com.timesten</groupId>
<artifactId>timesten</artifactId>
<version>11.2.2.7.8</version>
<scope>system</scope>
<systemPath>${timesten.jdbc.library.path}</systemPath>
</dependency>
</dependencies>
<executions>
<execution>
<id>drop-db</id>
<phase>clean</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<onError>continue</onError>
<srcFiles>
<srcFile>src/sql/base/drop.sql</srcFile>
</srcFiles>
</configuration>
</execution>
<execution>
<id>create-clean-db</id>
<phase>clean</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<srcFiles>
<srcFile>src/sql/base/create.sql</srcFile>
</srcFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
答案 0 :(得分:0)
如果这仍然很有趣:您可以通过创建一个带有Mojo的小型maven插件来解决这个问题,而Mojo除了Class.forName()之外什么都不做。创建META-INF / maven / extensions.xml,将驱动程序包作为扩展名导出。很早就运行这个插件(例如在初始化期间)并指定
<extensions>true</extensions>
实际上,扩展创建了一个由所有插件共享的类加载器,其驱动程序类加载一次(并且本地库加载一次)。