spring cloud gateway 启动报错

'org.springframework.http.codec.ServerCodecConfigurer' that could not be found.

当启动出现这个错误 则是jar包冲突导致的

在pom中 屏蔽掉冲突的jar包就可以了


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

你可能感兴趣的:(springcloud)