繁体   English   中英

使用cargo Maven插件将Spring项目部署到远程服务器

[英]using cargo maven plugin to deploy spring project to remote server

我正在使用Eclipse进行开发。 我尝试使用货运插件部署到远程服务器,但是出现错误。 我将EC2与tomcat 8一起用作服务器,在尝试运行或调试时使用了cargo:deploy

这是我的错误

Failed to execute goal org.codehaus.cargo:cargo-maven2-plugin:1.6.3:deploy (default-cli) on project travelplanner: Execution default-cli of goal org.codehaus.cargo:cargo-maven2-plugin:1.6.3:deploy failed: Failed to create deployable with implementation class org.codehaus.cargo.container.tomcat.TomcatWAR for the parameters (container [id = [tomcat8x]], deployable type [war]). InvocationTargetException: Failed to parse Tomcat WAR file in [my workingspace\\travelplanner-1.0.0-BUILD-SNAPSHOT.war]: Failed to find file [my workingspace\\travelplanner-1.0.0-BUILD-SNAPSHOT.war]: my workingspace\\travelplanner-1.0.0-BUILD-SNAPSHOT.war -> [Help 1] [ERROR]

这是我的pom.xml

<build>
    <plugins>
        <plugin>
            <artifactId>maven-eclipse-plugin</artifactId>
            <version>2.9</version>
            <configuration>
                <additionalProjectnatures>
                    <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                </additionalProjectnatures>
                <additionalBuildcommands>
                    <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                </additionalBuildcommands>
                <downloadSources>true</downloadSources>
                <downloadJavadocs>true</downloadJavadocs>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.5.1</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <compilerArgument>-Xlint:all</compilerArgument>
                <showWarnings>true</showWarnings>
                <showDeprecation>true</showDeprecation>
            </configuration>
        </plugin>
        <plugin>
        <groupId>org.codehaus.cargo</groupId>
        <artifactId>cargo-maven2-plugin</artifactId>
        <version>1.6.3</version>
        <configuration>
            <container>
                <containerId>tomcat8x</containerId>
                <type>remote</type>
            </container>
            <configuration>
                <type>runtime</type>
                <properties>
                    <cargo.hostname>myIPaddress</cargo.hostname>
                    <cargo.remote.username>myId</cargo.remote.username>
                    <cargo.remote.password>myPassword</cargo.remote.password>
                    <cargo.tomcat.manager.url>http://myIpAddress:8080/manager/text
                    </cargo.tomcat.manager.url>
                </properties>
            </configuration>
            <deployables>
                    <deployable>
                        <groupId>com.rosem</groupId>
                        <artifactId>travelplanner</artifactId>
                        <type>war</type>
                    </deployable>
                </deployables>
        </configuration>
   </plugin>

    </plugins>
</build>

您需要指定可找到war文件的位置。 检查插件配置中可部署标签下的位置标签。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM