maven 对 tomcat6 与 tomcat 7 自动部署的区别

本人经过整理与测试!


maven 自动部署tomcat6 与 tomcat7 之间有很大的变化,下面给出详细的配置。

** maven 自动部署 tomcat6
Step1: Tomcat6 conf 下的tomcat-users.xml 配置
<tomcat-users> 
<user username="admin" password="password" roles="manager"/> 
</tomcat-users> 

Step2: 在Maven的conf目录中的setting.xml servers节点增加
<server>
  <id>tomcat6</id>
<username>admin</username>
<password>password</password>
</server>
【注】: 其中username 与 password的值要对应于tomcat中设置的值。

Step3: 工程的pom.xml plugins节点添加:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<url>http://localhost:8080/manager/html</url>
<server>tomcat6</server>
<path>/</path>
</configuration>
</plugin>
【注】: tomcat6对应于setting.xm中的server的id   path为web工程打包后在tomcat 下面webapps 的名称。

Step4: 先启动tomcat

Step5: 右键Run As 选择 Maven build...,在Goals中输入package tomcat:redeploy 

** maven 自动部署 tomcat7    【步骤一样多,有几个地方不同,请注意】
Step1:Tomcat7 conf 下的tomcat-users.xml 配置   【不同于tomcat6】
<tomcat-users> 
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<user username="admin" password="password" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-script,admin-gui"/>
</tomcat-users>
【注】: tomcat7中对角色进行了细化,上面配置了所有的角色。或许有些角色并不需要

Step2: 在Maven的conf目录中的setting.xml servers节点增加
<server>
  <id>tomcat7</id>
<username>admin</username>
<password>password</password>
</server> 

Step3: 工程的pom.xml plugins节点添加:    【不同处】
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<!-- 注意此处的url -->
<url>http://localhost:8080/manager/text</url>
<server>tomcat7</server>
<path>/</path>
</configuration>
</plugin>

Step4: 先启动tomcat

Step5: 右键Run As 选择 Maven build...,在Goals中输入package tomcat7:redeploy 
【注】: 名字为tomcat7

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值