jboss 管理対象サーバーと IBM DB2 データベースを使用して arquillian テストを実行しようとしています。
今のところ、データソースの作成に行き詰まっています。JBoss は実行ごとに解凍されるため、ドライバーとデータソースの構成を pom.xml に追加して、Maven が JBoss で適切な構成を作成できるようにします。結果のセクションは次のようになります。
<profile>
<id>arquillian-jboss-managed</id>
<build>
<plugins>
<!-- JBoss server itself -->
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-test-classes</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-dist</artifactId>
<version>7.1.1.Final</version>
<type>zip</type>
<overWrite>false</overWrite>
<outputDirectory>target</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<!-- adding datasource -->
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy-driver</id>
<phase>process-test-classes</phase>
<!-- groupId and artifactId aren't global, I've got jar on defined path -->
<configuration>
<groupId>db2</groupId>
<artifactId>db2cc</artifactId>
<name>db2jcc4.jar</name>
</configuration>
<goals>
<goal>deploy-artifact</goal>
</goals>
</execution>
<execution>
<id>add-datasource</id>
<phase>process-test-resources</phase>
<configuration>
<address>subsystem=datasources,data-source=MyDataSource</address>
<properties>
<connection-url>jdbc:db2://host:port/database</connection-url>
<jndi-name>MyDataSource</jndi-name>
<enabled>true</enabled>
<pool-name>MyDataSource</pool-name>
<user-name>db2inst1</user-name>
<password>pass</password>
<driver-name>db2jcc4.jar</driver-name>
</properties>
</configuration>
<goals>
<goal>add-resource</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
それでもエラーがあります:
プロジェクト testrunner でゴール org.jboss.as.plugins:jboss-as-maven-plugin:7.4.Final:add-resource (add-datasource) を実行できませんでした: ゴール add-resource を実行できませんでした。理由: I/O エラーにより、操作 '{ "address" => []、"operation" => "read-attribute"、"name" => "launch-type" }' を実行できませんでした: java.net.ConnectException: JBAS012144: remote://localhost:9999 に接続できませんでした。接続がタイムアウトしました
問題は、Maven が構成パラメーターを適用しようとした時点で JBoss が開始されていないか、単に必要なポートをリッスンしていないことだと思います。
どんな助けでも大歓迎です
前もって感謝します