maven tomcat plugin 使用

使用 maven 的 tomcat plugin 插件运行 webapp 不需要配置 tomcat server,直接使用 maven build 就可以运行。

Step 1: 创建一个基于 maven 的webapp

file -> new -> maven project -> input group id & artifact id

Alt text Alt text

Step 2 : add tomcat plugins in pom.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
<build>
<finalName>the name your want</finalName>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/</path>
</configuration>
</plugin>
</plugins>
</build>

选中 project -> 右键 -> maven -> update project…

Step 3 : maven clean & maven install

选中 project -> 右键 -> maven clean -> maven install

Alt text

Step 4 : maven build

点击 debug 标志上的三角形 -> debug configurations… -> 点击 workspace -> select your workspace -> input tomcat7:run in goals -> apply -> debug

Alt text Alt text

Step 5 : visit your webapp

Alt text

如果没有抛任何异常,表明 webapp 成功在 maven tomcat plugin 上启动了 ,访问相应的 url 就行了

Alt text

|