2

我正在使用 Maven 和 Eclipse 来启动容器测试。我的 Maven 配置是使用原型设置的:jboss-javaee6-webapp-ear-blank-archetype

我可以在 JBoss AS7 中毫无问题地启动我的 Arquillian 测试。

但是,当我尝试使用嵌入式 Weld EE 容器启动时,出现以下异常:

java.lang.IllegalArgumentException: No org.jboss.arquillian.container.spi.client.protocol.metadata.HTTPContext found in org.jboss.arquillian.container.spi.client.protocol.metadata.ProtocolMetaData. Servlet protocol can not be used

是什么导致了 org.jboss.arquillian.container.spi.client.protocol.metadata.HTTPContext found 错误,我该如何解决?

我在我的 pom 中设置了两个不同的配置文件,一个用于 JBoss AS7(工作),一个用于嵌入式 Weld EE(不工作):

<profile>
    <id>arq-weld-ee-embedded</id>
          <activation>
              <activeByDefault>true</activeByDefault>
          </activation>
    <dependencies>
        <dependency>
            <groupId>org.jboss.spec</groupId>
            <artifactId>jboss-javaee-6.0</artifactId>
            <version>1.0.0.Final</version>
            <type>pom</type>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.container</groupId>
            <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
            <version>1.0.0.CR3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.weld</groupId>
            <artifactId>weld-core</artifactId>
            <version>1.1.5.Final</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <version>1.6.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</profile>

<profile>
    <!-- An optional Arquillian testing profile that executes tests in your 
        JBoss AS instance -->
    <!-- This profile will start a new JBoss AS instance, and execute the 
        test, shutting it down when done -->
    <!-- Run with: mvn clean test -Parq-jbossas-managed -->
    <id>arq-jbossas-managed</id>
    <dependencies>
        <dependency>
            <groupId>org.jboss.as</groupId>
            <artifactId>jboss-as-arquillian-container-managed</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</profile>

4

1 回答 1

4

在我的 arquillian.xml 文件中,我有一行:

<defaultProtocol type="Servlet 3.0" />

经过一些研究,我发现嵌入式 Weld EE 容器不支持 Servlet 3.0 协议

为了解决这个问题,我从配置中删除了 defaultProtocol,并在每个容器的基础上设置了协议。

于 2013-07-24T04:37:08.523 回答