当前位置: 代码迷 >> 综合 >> Spring Cloud Gateway 启动失败!提示 Please remove spring-boot-starter-web dependency.
  详细解决方案

Spring Cloud Gateway 启动失败!提示 Please remove spring-boot-starter-web dependency.

热度:95   发布时间:2024-02-19 09:36:58.0

提示信息: 

**********************************************************Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway at this 
time. Please remove spring-boot-starter-web dependency.**********************************************************

查看Gateway pom发现 引入了 spring-boot-starter-webflux 和项目引入的 spring-boot-starter-web 冲突了 所以把gateway下的 spring-boot-starter-webflux移除就行

<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-gateway</artifactId><exclusions><exclusion><artifactId>spring-boot-starter-webflux</artifactId><groupId>org.springframework.boot</groupId></exclusion></exclusions>
</dependency>

至于移除后有没有其他问题暂未发现,如果有人知道请指导一下

  相关解决方案