本文转载至:http://www.cnblogs.com/guodefu909/p/4874549.html
其实maven项目部署到tomcat的方式很多,我从一开始的打war包到tomcat/webapps目录,到使用tomcat-maven插件,到直接使用servers部署,一路来走过很多弯路。
下面就一一介绍这几种部署方式:
1.maven web项目部署到eclipse 编辑器上的tomcat.
这种方式其实跟非maven项目没什么区别,就是部署的方式不同
之后复制war包到tomcat/webapps目录即完成部署。
2、使用tomcat-maven插件,在pom.xml的</dependencies>之后添加以下代码,并做相应修改
<build>
<finalName>guoguo-maven-web</finalName>
<plugins>
<plugin>
<!-- 3个可用插件 -->
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat6-maven-plugin</artifactId> <!-- 命令为tomcat6:redeploy -->
<!-- <groupId>org.apache.tomcat.maven</groupId> -->
<!-- <artifactId>tomcat7-maven-plugin</artifactId> --> <!-- 命令为tomcat7:redeploy -->
<!-- <groupId>org.codehaus.mojo</groupId> -->
<!-- <artifactId>tomcat-maven-plugin</artifactId> --> <!-- 命令为tomcat:redeploy -->
<!-- <version>2.2</version> -->
<configuration>
<!-- <url>http://localhost:8080/manager</url> --> <!-- tomcat6部署管理路径 -->
<url>http://localhost:8080/manager/text</url> <!-- tomcat7部署管理路径 -->
<username>admin</username> <!-- tomcat的管理员账号 -->
<password>admin</password>
<port>8080</port>
<path>/guoguo-maven-web</path> <!-- 部署路径 -->
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<!-- 运行redeploy命令前,要能正常访问http://localhost:8080/manager-->
</configuration>
</plugin>
</plugins>
</build>
- 这样就配置好了tomcat maven插件
通过项目右键 run as --> maven build... --> main --> goals 中填入 tomcat:redeploy命令即可部署成功,这样部署有时会使tomcat出错,出错需要重启tomcat。
3.直接使用servers部署
首先确保编译配置正常
test下的目录编译到target/test-classes,其他编译到target/classes目录即可,其他一般默认不需要改变什么
然后进行部署的配置:
配置好之后,通过右键servers中tomcat,add and remove...添加项目,重启tomcat即可