我一直在努力设置 maven-as-plugin 。
我的目标是在运行集成测试之前重新部署耳朵。 我希望这个过程能够自动将其集成到CI中。
服务器是远程运行的JBoss服务器(AS 7)。
感谢Jboss臭名昭着的 PermGen 空间问题,我需要先重新启动服务器 部署耳朵。否则,服务器将每隔5次左右爆炸......
为此,我尝试设置目标“关闭”,reload = true。 问题是maven插件在运行下一个目标(清理以前的工件)之前不会等待它完成。
以下是我的POM的摘录:
<!-- Jboss Deploy/undeploy application EAR -->
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.5.Final</version>
<configuration>
<!-- JBoss management -->
<hostname>${sanity.tests.jboss.host}</hostname>
<port>${sanity.tests.management.port}</port>
<username>${sanity.tests.jboss.username}</username>
<password>${sanity.tests.management.password}</password>
</configuration>
<executions>
<!-- Reload Jboss to avoid permgen space -->
<execution>
<id>restart</id>
<phase>pre-integration-test</phase>
<goals><goal>shutdown</goal></goals>
<configuration>
<reload>true</reload>
</configuration>
</execution>
<!-- Undeploy previous ear -->
<execution>
<id>undeploy</id>
<phase>pre-integration-test</phase>
<!-- Cleanup : Undeploy -->
<goals>
<goal>undeploy</goal>
</goals>
<configuration>
<matchPattern>rm-app.*.ear</matchPattern>
<ignoreMissingDeployment>true</ignoreMissingDeployment>
</configuration>
</execution>
<!-- Deploy before int test -->
<execution>
<id>deploy</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy-artifact</goal>
</goals>
<configuration>
<name>xxxx</name>
<groupId>xxxxx</groupId>
<artifactId>xxxx</artifactId>
<version>${project.version}</version>
</configuration>
</execution>
</executions>
</plugin>
非常感谢任何帮助。
答案 0 :(得分:0)
首先尝试运行取消部署。如果这是AS上唯一的耳朵,则重新加载很可能足够快,以使部署目标不会超时。
<goals>
<goal>undeploy</goal>
<goal>shutdown</goal>
<goal>deploy</goal>
</goals>
不幸的是,我不知道如何增加部署目标的超时。
答案 1 :(得分:0)
我有完全相同的问题。 switangs建议(在重新启动JBoss之前首先取消部署)肯定有帮助。我在服务器重启和重新部署之间添加一些时间的另一件事是将服务器的取消部署和重新启动绑定到构建过程的早期阶段(例如初始化),而部署步骤则绑定到流程资源或预先集成测试就像你的情况一样。这是有效的,因为我在一个单独的集成测试模块中部署我的工件,该模块首先将所有相关的服务器工件与maven-dependency-plugin插件一起复制到$ {project.build.directory} / dependency文件夹作为第一步之一。 但我同意这不是一个非常好的解决方案,对于独立JBoss节点的阻塞重启cli命令会好得多。
答案 2 :(得分:0)
事实上,关闭目标不会解决PermGen问题。 我通过使用cli来解决这个问题。
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.5.Final</version>
<configuration>
<afterDeployment>
<commands>
<command>/host=master:shutdown(restart=true)</command>
</commands>
</afterDeployment>
<!-- your configuration -->
...
</configuration>
<plugin>
和“master”是域模式下主机的名称。