具体步骤网上有不少教程,可参考。
我的问题是调用mvn tomcat7:deploy的时候返回403错误,可是tomcat用户我都配好了。
原来pom.xml需要写成这样:
<plugins><!-- tomcat 的插件 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<url>http://localhost:8080/manager/text</url>
<server>tomcat</server>
</configuration>
</plugin>
</plugins>
URL应该是:
http://localhost:8080/manager/text
而不是
http://localhost:8080/manager/html