テストパラメータでmavenを起動しているときに、上記の例外が発生します。統合テスト展開を作成するときに、私は次の取得:EJBクラスのビジネスインタフェースの処理に失敗しました
org.jboss.as.server.deployment.DeploymentUnitProcessingException: WFLYEJB0466: Failed to process business interfaces for EJB class class ..contract.ContractMockService
に関するクラスは次のようになります。
package ..integration.bestand.contract;
import java.time.LocalDate;
import java.util.ArrayList;
import javax.ejb.Local;
import javax.ejb.Stateless;
import org.apache.deltaspike.core.api.exclude.Exclude;
import org.apache.deltaspike.core.api.projectstage.ProjectStage;
...
@Exclude(ifProjectStage = {
ProjectStage.Production.class,
ProjectStage.Staging.class,
..Integration.class,
..Qs.class,
..PatchQs.class
})
@Stateless
@Local(IContractIntService.class)
public class ContractMockService implements IContractIntService {
...
return ContractBuilder.build();
}
}
インターフェースIContractIntService
は次のようになります。
package ..integration.bestand.contract;
import javax.ejb.Local;
...
@Local
public interface IContractIntService {
public enum State {
SUCCESS,
UNKNOWN_ERROR,
NOT_FOUND;
// TODO: Stati für Fehler hier definieren
}
//Interface comment
Result<State, ContractDTO> retrieveContract(String contractIdentifier);
}
注:インターフェースmaven経由で別のプロジェクトに含まれています。
テストは次のようになります。
package ..api.contractregistration.service;
import static org.hamcrest.CoreMatchers.any;
import static org.hamcrest.MatcherAssert.assertThat;
import java.util.logging.Logger;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.rules.TestWatcher;
import org.junit.runner.RunWith;
import ..core.test.IntegrationTest;
@RunWith(Arquillian.class)
@Category(IntegrationTest.class)
public class ContractRegistrationIntegrationTest {
protected final Logger log = Logger.getLogger(ContractRegistrationIntegrationTest.class.getCanonicalName());
@Rule
public TestWatcher watcher = new TestWatcher() {
@Override
protected void starting(org.junit.runner.Description description) {
log.info(String.format("---> Starting test: %s", description));
}
@Override
protected void failed(Throwable e, org.junit.runner.Description description) {
log.info(String.format("<--- Test failed: %s", description));
}
@Override
protected void succeeded(org.junit.runner.Description description) {
log.info(String.format("<--- Test succeeded: %s", description));
}
};
@Deployment
public static WebArchive createDeployment() {
WebArchive result = ShrinkWrap.create(WebArchive.class)
.addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml")
.addAsResource("META-INF/persistence.xml", "META-INF/persistence.xml")
.addPackages(true, "..ejb.portal")
.addPackages(true, "..core")
.deletePackages(true, "..core.config.deltaspike")
.addPackages(true, "..integration")
.addPackages(true, "..api")
.addPackages(true, "org.apache.deltaspike.core")
.addPackages(true, "..ejb.util");
System.out.println("########## TEST DEPLOYMENT########" + result.toString(true));
return result;
}
@Test
public void test() {
String tempPw = "bla"; // result.getDto();
assertThat(tempPw, any(String.class));
}
}
このテストについての驚くべき事は、私もテスト内部MockService
のものを使用していないこと、です。
Mavenの構成は次のようになります。
目標:clean test -Parq-wildfly-managed
JRE VM引数:-Djboss.home="myLocalWildflyDirectory"
JAVA_HOME
はjdk8に設定されています。
...
<profile>
<!-- An optional Arquillian testing profile that executes tests in your WildFly instance, e.g. for build server -->
<!-- This profile will start a new WildFly instance, and execute the test, shutting it down when done -->
<!-- Run with: mvn clean test -Parq-wildfly-managed -->
<id>arq-wildfly-managed</id>
<dependencies>
<dependency>
<groupId>org.wildfly.arquillian</groupId>
<artifactId>wildfly-arquillian-container-managed</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.ivi.torino</groupId>
<artifactId>torino-integration-bestand-mock-ejb</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.ivi.torino</groupId>
<artifactId>torino-integration-docservice-mock-ejb</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.ivi.torino</groupId>
<artifactId>torino-integration-bestand-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</profile>
...
通常のmavenが正常に(ちょうど何のテストが含まれていない)を構築clean verify package install
でビルド:
最後のものは、「ARQ-wildfly管理の」コンテナの特に一部私のポンポン、あります。
注:この記事では、会社の専門分野を除外するようにパッケージの名前を変更しました。
類似のエラーは、ShrinkWrapのデプロイメントを修正することを示唆していますが、ほぼすべてのパッケージが含まれていて、明示的にインターフェイスクラスを追加しようとしました。しかし、依然として同じエラーが残っています。
この原因は何ですか?
あなたはmavenライフサイクルを誤解しているようでした。 'mvn clean verify package install'を使ってmavenを呼び出すと、いくつかのことが二重または三重に実行されています。あなたが簡単に必要なのは、 'mvn clean install'または' mvn clean verify' .. https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.htmlを読むことを推奨します。 – khmarbaise
@khmarbaiseありがとうあなたの提案。私は明らかに私はmavenの専門家ではないと言うことができます。私は以前あなたの言及した実行configsを使用し、彼らは働いたが、私の質問は、作業ビルドを目指していませんでした。 'test'ビルドは上記のエラーを生成しており、私には無駄なままにしています... – EngJon
あなたのIContractServiceは、依存関係がないためにロードできないことがあります。レベルINFOのカテゴリorg.jboss.weld.Bootstrapでログをチェックインして、すべてのBean定義が正しく登録されていることを確認することができます。 – Franck