我可以使用Maven Cargo插件将WAR部署到2个不同的服务器(生产和开发阶段)吗?

时间:2015-01-05 09:29:17

标签: maven maven-3 maven-cargo cargo-maven2-plugin

我有一个带有Maven Cargo插件配置的项目,如下所示。当我运行mvn cargo:redeploy时,它会将当前版本的应用程序部署到AAA.BBB.CCC.DDD的服务器。

现在我要添加第二台服务器,比如EEE.FFF.GGG.HHHEEE.FFF.GGG.HHH将是生产服务器,AAA.BBB.CCC.DDD - 开发/测试阶段。

是否可以使用mvn cargo:redeploy将应用程序部署到不同的服务器(生产和测试,EEE.FFF.GGG.HHHAAA.BBB.CCC.DDD)?如果是,我应该如何修改下面的Cargo插件配置?

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.mycompany</groupId>
    <artifactId>my-product</artifactId>
    <packaging>war</packaging>
    <version>[...]</version>
    <name>my-product</name>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <powermock.version>1.5</powermock.version>
    </properties>

    <build>
        <finalName>${project.artifactId}</finalName>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.cargo</groupId>
                <artifactId>cargo-maven2-plugin</artifactId>
                <version>1.3.3</version>
                <configuration>
                    <container>
                        <containerId>tomcat7x</containerId>
                        <type>remote</type>
                    </container>
                    <configuration>
                        <type>runtime</type>
                        <properties>
                            <cargo.remote.username>user name</cargo.remote.username>
                            <cargo.remote.password>password</cargo.remote.password>
                            <cargo.hostname>AAA.BBB.CCC.DDD</cargo.hostname>
                            <cargo.protocol>http</cargo.protocol>
                            <cargo.servlet.port>8080</cargo.servlet.port>
                        </properties>
                    </configuration>

                    <!-- Deployer configuration -->
                    <deployer>
                        <type>remote</type>
                    </deployer>
                    <deployables>
                        <deployable>
                            <groupId>com.mycompany</groupId>
                            <artifactId>my-product</artifactId>
                            <type>war</type>
                        </deployable>
                    </deployables>
                </configuration>
            </plugin>
        </plugins>
    </build>

1 个答案:

答案 0 :(得分:0)

如@wemu所示,您可以在插件配置中添加许多执行,如下所示:

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.3.3</version>
    <configuration>
        <container>
            <containerId>tomcat7x</containerId>
            <type>remote</type>
        </container>

        <!-- Deployer configuration -->
        <deployer>
            <type>remote</type>
        </deployer>
        <deployables>
            <deployable>
                <groupId>com.mycompany</groupId>
                <artifactId>my-product</artifactId>
                <type>war</type>
            </deployable>
        </deployables>
    </configuration>
    <executions>
        <!-- First execution to deploy on AAA.BBB.CCC.DDD -->
        <execution>
            <id>deploy1</id>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.remote.username>user name 1</cargo.remote.username>
                    <cargo.remote.password>password 1</cargo.remote.password>
                    <cargo.hostname>AAA.BBB.CCC.DDD</cargo.hostname>
                    <cargo.protocol>http</cargo.protocol>
                    <cargo.servlet.port>8080</cargo.servlet.port>
                </properties>
            </configuration>
        </execution>
        <!--  Second execution to deploy on EEE.FFF.GGG.HHH -->
        <execution>
            <id>deploy2</id>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.remote.username>user name 2</cargo.remote.username>
                    <cargo.remote.password>password 2</cargo.remote.password>
                    <cargo.hostname>EEE.FFF.GGG.HHH</cargo.hostname>
                    <cargo.protocol>http</cargo.protocol>
                    <cargo.servlet.port>8080</cargo.servlet.port>
                </properties>
            </configuration>
        </execution>
    </executions>
</plugin>

你甚至可以在executions之外共享一些配置元素,如果你需要添加更多的执行,你只需要更改用户密码和IP地址:

<plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.3.3</version>
    <configuration>
        <container>
            <containerId>tomcat7x</containerId>
            <type>remote</type>
        </container>

        <!-- Common configuration -->
        <configuration>
            <type>runtime</type>
            <properties>
                <cargo.protocol>http</cargo.protocol>
                <cargo.servlet.port>8080</cargo.servlet.port>
            </properties>
        </configuration>

        <!-- Deployer configuration -->
        <deployer>
            <type>remote</type>
        </deployer>
        <deployables>
            <deployable>
                <groupId>com.mycompany</groupId>
                <artifactId>my-product</artifactId>
                <type>war</type>
            </deployable>
        </deployables>
    </configuration>
    <executions>
        <!-- First execution to deploy on AAA.BBB.CCC.DDD -->
        <execution>
            <id>deploy1</id>
            <configuration>
                <properties>
                    <cargo.remote.username>user name 1</cargo.remote.username>
                    <cargo.remote.password>password 1</cargo.remote.password>
                    <cargo.hostname>AAA.BBB.CCC.DDD</cargo.hostname>
                </properties>
            </configuration>
        </execution>
        <!--  Second execution to deploy on EEE.FFF.GGG.HHH -->
        <execution>
            <id>deploy2</id>
            <configuration>
                <properties>
                    <cargo.remote.username>user name 2</cargo.remote.username>
                    <cargo.remote.password>password 2</cargo.remote.password>
                    <cargo.hostname>EEE.FFF.GGG.HHH</cargo.hostname>
                </properties>
            </configuration>
        </execution>
    </executions>
</plugin>