小编典典

Maven远程Tomcat配置

tomcat

我正在使用maven2。我已经安装了tomcat7。我想将插件配置为使用已安装的tomcat7。有人可以指向执行此操作的链接。


阅读 243

收藏
2020-06-16

共1个答案

小编典典

为此使用货运插件。像这样配置货物

        <profiles>
            <profile>
                <id>integration</id>
                <build>
                    <plugins>
                      <plugin>
                        <groupId>org.codehaus.cargo</groupId>
                        <artifactId>cargo-maven2-plugin</artifactId>
                        <version>1.0</version>
                        <configuration>
                          <!-- Container configuration -->
                          <container>
                            <containerId>tomcat6x</containerId>
                          </container>
                          <configuration>
                            <type>existing</type>
                            <home>/usr/local/apache-tomcat-6.0.18</home>
                          </configuration>
                        </configuration>
                      </plugin>
                    </plugins>
                </build>
            </profile>
        </profiles>

我有相同的设置,但是已经在Tomcat6.0.x和Jetty 7.0.16上进行了测试。这些链接将帮助


对于这样的 远程部署 (在Tomcat7中必须相同)

       <configuration>
        <!-- Container configuration -->
        <container>
            <containerId>tomcat6x</containerId>
            <type>remote</type>
        </container>
        <configuration>          
            <type>runtime</type>
            <properties>
              <cargo.remote.username>admin</cargo.remote.username>
              <cargo.remote.password></cargo.remote.password>
              <cargo.tomcat.manager.url>http://localhost:8888/manager</cargo.tomcat.manager.url>
            </properties>
        </configuration>
        ...
    </configuration>

再次参考上面的链接!

2020-06-16