一、可以通过在pom中配置tomcat插件。
首先要确保你的仓库里有这个插件,然后按如下配置。
<build>
<plugins>
<!-- 配置Tomcat插件 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<path>/</path>
<port>8081</port>
</configuration>
</plugin>
</plugins>
</build>
配置中的path是执行路径,port是运行端口。这里写的是"/"和"8080",即代表访问路径为"localhost:8080"。
然后右键项目,maven build,输入"clean tomcat7:run"
查询打印日志没有报错,并且出现"信息: Starting ProtocolHandler ["http-bio-8081"]"代表运行成功。可打开浏览器访问页面。
二、