1

测试 java持久性,想在arquillian测试中集成jrebel 。我读过一些关于arquillian jrebel extension的内容,但无法很好地配置它(maven 依赖错误)。

现在我只是在pom.xml上使用jrebel插件远程运行Jboss

<plugin>
            <groupId>org.zeroturnaround</groupId>
            <artifactId>jrebel-maven-plugin</artifactId>
            <executions>
                <execution>
                    <id>generate-rebel-xml</id>
                    <phase>process-resources</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
</plugin>

以上够吗?

4

1 回答 1

0

maven 插件的作用是生成rebel.xml配置文件。需要映射已部署应用程序之外的资源。JVM 本身应该以-javaagent参数启动(参见手册)。对于 Arquillian,有一个社区贡献的扩展,但我不确定它实际上是如何工作的。

于 2012-12-13T22:11:50.717 回答