spring cloud gateway 整合出现的坑

1.整合是出现问题:

 注:添加的依赖

        
            org.springframework.cloud
            spring-cloud-starter-gateway
        


spring cloud gateway 整合出现的坑_第1张图片

2.解决:

将gateway中的“spring-boot-starter-webflux” 去掉可以编译成功

spring cloud gateway 整合出现的坑_第2张图片

但是会出现“Spring Webflux is missing from the classpath, which is required for Spring Cloud Gateway at this time. Please add spring-boot-starter-webflux dependency.”;

解决,重新引入spring-boot-starter-webflux依赖

在这里我引入的是:


	
		org.springframework.boot
	    spring-boot-starter-webflux
		2.1.0.RELEASE
	

 

你可能感兴趣的:(spring,cloud)