提示信息:
**********************************************************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>
至于移除后有没有其他问题暂未发现,如果有人知道请指导一下