0

我正在使用以下 POM 配置将战争部署到远程 JBoss 5.1.0

<plugin>
        <groupId>org.codehaus.cargo</groupId>
        <artifactId>cargo-maven2-plugin</artifactId>
        <version>1.0.2</version>
        <configuration>
            <container>
                <containerId>jboss51x</containerId>
                <type>remote</type>
            </container>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.hostname>localhost</cargo.hostname>
                    <cargo.remote.username>****</cargo.remote.username>
                    <cargo.remote.password>****</cargo.remote.password>
                </properties>
            </configuration>
            <deployer>
                <type>remote</type>
                <deployables>
                  <deployable>
                    <groupId>${project.groupId}</groupId>
                    <artifactId>${project.artifactId}</artifactId>
                    <type>war</type>
                    <properties>
                        <context>/${project.artifactId}</context>
                    </properties>
                  </deployable>
                </deployables>
            </deployer>
        </configuration>
        <executions>
                <execution>
                    <id>start-container</id>
                    <phase>pre-integration-test</phase>
                    <goals>
                        <goal>deployer-deploy</goal>
                    </goals>
                </execution>
                <execution>
                    <id>stop-container</id>
                    <phase>post-integration-test</phase>
                    <goals>
                        <goal>deployer-undeploy</goal>
                    </goals>
                </execution>
                <execution>
                    <id>verify-deploy</id>
                    <phase>install</phase>
                    <goals>
                        <goal>deployer-deploy</goal>
                    </goals>
                </execution> 
                <execution>
                    <id>clean-undeploy</id>
                    <phase>pre-clean</phase>
                    <goals>
                        <goal>deployer-undeploy</goal>
                    </goals>
                </execution> 
            </executions>
      </plugin>

它工作正常,Web 项目通过http://localhost:8080/my-web-project/ 启动

但是在 JBoss AS 管理控制台中没有任何痕迹(http://localhost:8080/admin-console/

正常吗?

提前致谢

4

1 回答 1

0

很长一段时间以来,使用 Cargo 在 JBoss AS 上进行远程部署只得到部分支持,这可能解释了这个问题。这是在 Cargo 1.0.3 中修复的CARGO-416中记录的。

因此,从 Cargo 1.0.3 开始,现在应该完全支持 JBoss 上的远程部署,并记录在专用的JBoss Remote Deployer wiki 页面中。试试看。

于 2010-08-27T20:37:53.870 回答