Maven自动部署测试Web应用
作者:网络转载 发布时间:[ 2016/3/4 11:48:40 ] 推荐标签:软件测试 WEB测试
一、在maven中使用内嵌tomcat部署测试Web应用
只使用简单的java web作为例子。
此时可以使用maven内嵌的tomcat,中间要用到tomcat-maven-plugin,这里不用设置plugin的repository,它会自动下载tomcat-maven-plugin和tomcat 。
只使用命令
mvn tomcat:run
可以了。
如果这里我们使用命令
mvn tomcat:deploy
会出现can not invoke tomcat manager的错误。这是因为没有对tomcat manager的设置。
二、在maven中使用外部tomcat部署web应用
此时使用的tomcat为自己安装的,要对tomcat和maven都进行设置。
maven要想链接上tomcat,要有三个步骤:
一是设置tomcat的manager帐号,二是下载可以链接外部tomcat的plugin,三是配置maven setting.xml文件中的server为tomcat的manager。
注意:使用外部的tomcat,要使用新版本的tomcat6(or7)-maven-plugin。
(1)设置tomcat 的manager帐号
在文件tomcat-path/conf/tomcat-user.xml中加入如下
(2)配置maven setting.xml
对个单个用户,配置的是~/.m2/setting.xml。
(3)下载可以链接外部 tomcat的plugin
在项目的pom.xml中加入plugin.
maven下载plugin和一般库的repo不同,接下来配置repo。
<span style="font-size: 16px;"><!---->
<!--if no repository defined, there will be error:-->
<!--No plugin found for prefix 'tomcat7' in the current project and in the plugin groups for ..-->
<!--from the repository [local],central (https://repo.maven.apache.org.maven2-->
<repositories>
<repository>
<id>people.apache.snapshots</id>
<url>http://repository.apache.org/content/groups/snapshots-group</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<name>Apache Snapshots</name>
<url>http://repository.apache.org/content/groups/snapshots-groups</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</span>
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11