maven部署tomcat插件

实现maven项目部署到服务器分为如下几个步骤:

  1. tomcat 的tomcat-users.xml中添加用户;
  2. maven 的settings.xml中添加server;
  3. pom.xml中添加tomcat7-maven-plugin插件配置;
  4. 在tomcat运行的情况下,运行 tomcat7:deploy 命令。

1、添加用户

在 标签内:

<role rolename="admin"/>    
<role rolename="admin-gui"/>    
<role rolename="manager"/>    
<role rolename="manager-script"/>    
<role rolename="manager-gui"/>    
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<user username="admin" password="admin" roles="admin,manager,manager-gui,admin-gui,manager-script,manager-jmx,manager-status"/>
 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

2、添加server

在 标签内:

<server>
 <id>Tomcat-8.0.29</id>
   <username>admin</username>
   <password>admin</password>
</server>
 
 
  • 1
  • 2
  • 3
  • 4
  • 5

3、添加插件配置

<!-- Maven Tomcat Plugin -->
<plugin>
  <groupId>org.apache.tomcat.maven</groupId>
  <artifactId>tomcat7-maven-plugin</artifactId>
  <version>2.2</version>
  <configuration>
    <!--Deploy to server-->
    <url>http://localhost:8080/manager/text</url>
    <server>Tomcat-8.0.29</server>
    <username>admin</username>
    <password>admin</password>
    <path>/CrowFunding</path>
    <port>8080</port>
  </configuration>
</plugin><plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.2</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
          <encoding>UTF-8</encoding>
        </configuration>
 </plugin>


 
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

4、运行 tomcat7:deploy

运行 
注:tomcat为运行状态方起作用,否则部署失败。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值