POM.xml 文件中找到 spring-boot-starter-web 的配置:如下图
更改为:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
因为org.springframework.boot中依赖的jar会跟本地tomcat中的jar起冲突,所以改为上面的配置,过滤掉依赖tomcat的jar。