maven+Spring boot项目搭建,tomcat启动成功,访问报404问题处理

时间:2021-01-27 20:04:59

POM.xml 文件中找到 spring-boot-starter-web 的配置:如下图

maven+Spring boot项目搭建,tomcat启动成功,访问报404问题处理

更改为:


<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。