三、安装、部署、启动tomcat服务器
1、安装tomcat插件
访问tomcat官网查找maven plugin插件坐标依赖
http://tomcat.apache.org/maven-plugin-2.2/
2、绑定tomcat插件,设置为打包阶段运行tomcat服务
同理在pom.xml中绑定
3、右键项目->run as->Maven build输入clean package
控制台输出Starting ProtocolHandler表示运行成功
浏览器输入http://localhost:8080/webDemo/ 访问
<plugin>
<groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>