文章目录
- 配置Tomcat:7插件(注意Path)
- 运行tomcat:7
- 第一种方式
- 第二种方式
- 测试路径(注意)
- 正确请求方式(注意路径)
配置Tomcat:7插件(注意Path)
作为演示,我这里特别配置了Path,以作为警告
注意path为/ssm,证明我们访问路径要加/ssm
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8081</port>
<path>/ssm</path>
</configuration>
</plugin>
</plugins>
</build>
运行tomcat:7
第一种方式
终端运行,如果遇到问题,请使用第二种方式
mvn tomcat7:run
第二种方式
测试路径(注意)
如果我们测试路径没有带ssm,则会报no mapping for get
在这里插入代码片