当启动SpringCloudGateway网关服务的时候,没注意好依赖问题,出现了这个问题:
Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway.
解决办法就是:删除SpringMVC的依赖,即下列依赖。
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId> </dependency>
分享一个管理SpringCloud依赖问题的方法,引入与你SpringBoot版本相对于的spring-cloud-dependencies版本,然后通过下面这种方法管理依赖,就可以避免依赖问题了。
<dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>2021.0.3</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>
在使用的时候就只需要如下引入依赖了:
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-gateway</artifactId></dependency>