異なる RDBMS の JAR コネクタを含むフォルダ「データベース」が与えられます。各 JAR は独自のフォルダーにあります。
+---database
+---db2
+---db2.jar
+---derby
+---derby.jar
+---h2
+---h2.jar
+---mysql
+---mysql.jar
これらの JAR ファイルをすべて WEB-INF\lib にコピーする必要があります。
ここに私のpom.xmlがあります:
<build>
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<webResources>
<resource>
<directory>../target/${project.artifactId}/classes/database</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
</build>
問題は、これらの JAR がディレクトリとともにコピーされることです。
+---WEB-INF/lib
+---db2
+---db2.jar
+---derby
+---derby.jar
+---h2
+---h2.jar
+---mysql
+---mysql.jar
これは、次のようになります。
+---WEB-INF/lib
+---db2.jar
+---derby.jar
+---h2.jar
+---mysql.jar
20 個のコネクタがあり、それらをハードコーディングしたくありません。