Cargo在远程服务器中部署ROOT.war

时间:2012-09-19 19:51:34

标签: java tomcat maven deployment cargo

我正在尝试使用cargo plugin

在正在运行的tomcat 5.5.27上进行远程部署

在运行mvn -P rdeploy-staging clean package cargo:redeploy中的构建服务器上 控制台上没有错误,但应用程序无法在tomcat上启动,应该在“/”root上下文中启动。

这是我用于远程部署的maven配置文件:

<profile>
        <id>rdeploy-staging</id>
        <build>
            <finalName>ROOT</finalName>
            <resources>
                <resource>
                    <directory>src/main/resources-staging</directory>
                </resource>
                <resource>
                    <directory>src/main/resources</directory>
                </resource>
            </resources>
            <plugins>
                <plugin>
                    <artifactId>maven-antrun-plugin</artifactId>
                    <executions>
                        <execution>
                            <phase>validate</phase>
                            <goals>
                                <goal>run</goal>
                            </goals>
                            <configuration>
                            <tasks>
                                <copy file="${basedir}\src\main\webapp\WEB-INF\web_staging.xml"
                                        tofile="${basedir}\src\main\webapp\WEB-INF\web.xml" overwrite="true" />
                            </tasks>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
                <plugin>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <configuration>
                        <skip>true</skip>
                    </configuration>
                </plugin>
                <!-- Cargo Plug in -->
                <plugin>
                    <groupId>org.codehaus.cargo</groupId>
                    <artifactId>cargo-maven2-plugin</artifactId>
                    <version>1.2.2</version>
                    <configuration>
                        <!-- Container configuration -->
                        <container>
                            <containerId>tomcat5x</containerId>
                            <type>remote</type>
                        </container>
                        <configuration>
                            <type>runtime</type>
                            <properties>
                                <cargo.remote.username>admin</cargo.remote.username>
                                <cargo.remote.password>admin</cargo.remote.password>
                                <cargo.hostname>server_ip</cargo.hostname>
                                <cargo.tomcat.manager.url>http://server_ip:8080/manager</cargo.tomcat.manager.url>
                            </properties>
                        </configuration>
                        <deployables>
                            <deployable>
                                <groupId>com.mycompany</groupId>
                                <artifactId>myapp</artifactId>
                                <type>war</type>
                            </deployable>
                        </deployables>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>

tomcat标准错误日志的输出:

  

INFO :validateJarFile(C:\ Program Files \ Apache Software Foundation \ Tomcat 5.5 \ temp \ 1-ROOT \ WEB-INF \ lib \ grizzly-servlet-webserver-1.9.35.jar ) - 罐子没装。请参阅Servlet规范2.3,第9.7.2节。违规类:javax / servlet / Servlet.class   2012年9月19日下午1:48:47 org.apache.catalina.loader.WebappClassLoader validateJarFile

     

INFO :validateJarFile(C:\ Program Files \ Apache Software Foundation \ Tomcat 5.5 \ temp \ 1-ROOT \ WEB-INF \ lib \ javax.servlet-api-3.0.1.jar ) - 罐子没装。请参阅Servlet规范2.3,第9.7.2节。违规类:javax / servlet / Servlet.class   2012年9月19日下午1:48:48 org.apache.catalina.core.StandardContext start

     

严重:错误listenerStart   2012年9月19日下午1:48:48 org.apache.catalina.core.StandardContext start

     

严重:由于之前的错误导致Context []启动失败

0 个答案:

没有答案