我正在尝试编写一个maven脚本,该脚本使用sql-maven插件删除并重新创建OracleTimesTen数据库,然后在预集成测试阶段使用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>
如果这仍然很有趣:您可以通过使用Mojo创建一个小的maven插件来解决这个问题,该插件只做插件类的class.forName()。创建一个META-INF/maven/extensions.xml,将驱动程序包导出为扩展。尽早运行此插件(例如在初始化期间)并指定
<extensions>true</extensions>
实际上,该扩展创建了一个由所有插件共享的类加载器,驱动程序类加载一次(本地库加载一次)。