<build>
<plugins>
<!-- 配置Tomcat插件 ,用于启动项目 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<!-- tomcat端口 -->
<!--<port></port> -->
<!-- 如果设置为/,则项目了路径为http://localhost:端口号 /-->
<!-- 如果设置为/lw,则项目了路径为http://localhost:端口号/lw -->
<path>/maven_test</path>
</configuration>
</plugin>
</plugins>
<finalName>maven_test</finalName>
</build>