使用 maven 的 tomcat plugin 插件运行 webapp 不需要配置 tomcat server,直接使用 maven build 就可以运行。
Step 1: 创建一个基于 maven 的webapp
file -> new -> maven project -> input group id & artifact id
Step 2 : add tomcat plugins in pom.xml
1 | <build> |
选中 project -> 右键 -> maven -> update project…
Step 3 : maven clean & maven install
选中 project -> 右键 -> maven clean -> maven install
Step 4 : maven build
点击 debug 标志上的三角形 -> debug configurations… -> 点击 workspace -> select your workspace -> input tomcat7:run in goals -> apply -> debug
Step 5 : visit your webapp
如果没有抛任何异常,表明 webapp 成功在 maven tomcat plugin 上启动了 ,访问相应的 url 就行了