2

我正在尝试使用cargo 插件在正在运行的 tomcat 5.5.27 上进行远程部署

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

这是我用于远程部署的 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标准错误日志的输出:

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

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

严重:错误 listenerStart Sep 19, 2012 1:48:48 PM org.apache.catalina.core.StandardContext start

SEVERE : Context [] 启动因先前的错误而失败

4

0 回答 0