如何利用maven插件部署项目到远程运行环境

编程


Cargo是一组帮助用户操作Web容器的工具,它能帮助用户实现自动化部署,而且它几乎支持所有的Web容器,如Tomcat、JBoss、Jetty和Glassfish。Cargo通过cargo-maven2-plugin提供了Maven集成,Maven用户可以使用该插件将Web项目部署到Web容器中。


Cargo支持两种供本地部署方式,

  1. 一种远程部署方式,本地部署分为standalone模式和existing模式。 在standalone模式中,Cargo会从Web容器的安装目录复制一份配置到用户指定的目录,并且部署应用。
  2. 在existing模式中,用户需要指定现有的Web容器配置目录,然后Cargo会直接使用这些配置并将应用部署到其对应的位置。

1、在maven中配置

<plugin>

<groupId>org.codehaus.cargo</groupId>

<artifactId>cargo-maven2-plugin</artifactId>

<version>1.7.1</version>

<configuration>

<container>

<!--Tomcat版本 7x 8x-->

<containerId>tomcat8x</containerId>

<type>remote</type><!--远程部署-->

</container>

<configuration>

<type>runtime</type>

<properties>

<cargo.hostname>你服务器的IP</cargo.hostname><!--ip-->

<cargo.servlet.port>你服务器的端口</cargo.servlet.port><!--端口-->

<cargo.protocol>http</cargo.protocol><!--协议-->

<cargo.rmi.port>1099</cargo.rmi.port>

<cargo.remote.username>admin</cargo.remote.username><!--账号密码-->

<cargo.remote.password>lushuifa</cargo.remote.password><!--账号密码-->

<!--访问路径-->

<cargo.tomcat.manager.url>http://39.105.145.103:8080/</cargo.tomcat.manager.url>

</properties>

</configuration>

</configuration>

</plugin>

2、在idea中如何使用见下图

3、服务器tomcat对应配置

tomcat中主要配置一下用户和密码和角色,不情楚的可以百度一下。

<role rolename="manager-gui"/>

<role rolename="manager-script"/>

<role rolename="manager-jmx"/>

<role rolename="manager-status"/>

<user username="用户名" password="密码" roles="manager-gui,manager-script,manager-jmx,manager-status" />

以上是 如何利用maven插件部署项目到远程运行环境 的全部内容, 来源链接: utcz.com/z/516501.html

回到顶部