我对GlassFih 4.1和Cargo有以下问题。
我尝试在远程GlassFish 4.1服务器上部署耳朵。没有成功... Maven命令:mvn cargo:redeploy Glassfish服务器占用了100%的CPU,就是这样。 Maven进程仍然被阻止...我已经尝试了远程ubuntu和远程Windows服务器。
在与Glassfish 3.1.2.2相同的远程服务器上,远程部署工作正常。
有没有人有同样的问题,并找到了解决方案?
我想下面的货物配置是可以的,因为它适用于GF 3.1.2.2(部署客户端版本3.1.2.2和containerId到glassfish3x)。
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.4.10</version>
<executions>
<execution>
<id>glassfish-deploy</id>
<phase>pre-integration-test</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
<configuration>
<container>
<containerId>glassfish4x</containerId>
<type>remote</type>
<log>target/cargo.log</log>
<logLevel>debug</logLevel>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.hostname>servername</cargo.hostname>
<cargo.rmi.port>4848</cargo.rmi.port>
<cargo.remote.port>8080</cargo.remote.port> <cargo.glassfish.domain.name>domain1</cargo.glassfish.domain.name>
<cargo.runtime.args>force=true</cargo.runtime.args>
<cargo.protocol>https</cargo.protocol>
<cargo.remote.username>admin</cargo.remote.username>
<cargo.remote.password>admin</cargo.remote.password>
</properties>
</configuration>
<deployables>
<deployable>
<location>${project.build.directory}/${project.build.finalName}.${project.packaging}</location>
<properties>
<name>${project.groupId}-${project.artifactId}-autodeploy</name>
</properties>
<type>ear</type>
</deployable>
</deployables>
</configuration>
<dependencies>
<dependency>
<groupId>org.glassfish.main.deployment</groupId>
<artifactId>deployment-client</artifactId>
<version>4.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
答案 0 :(得分:3)
我遇到了同样的问题,因此线程deploying web app to external glassfish4 instance with maven cargo plugin中的其他用户也是如此
当您发布JIRA错误时,已经存在一个建议的解决方案。尝试使用以下主题中的修补版本替换Grizzly。
答案 1 :(得分:0)
我发现这是Glassfish 4.1中的一个错误。
请参阅https://java.net/jira/browse/GLASSFISH-21180
请参阅https://java.net/jira/browse/GLASSFISH-21196
所以我决定选择wildfly 8.1并使用非常好的wildfly maven插件。