学习博客:【SpringCloud】Gateway配置

SpringBoot版本:2.7.1
SpringCloud版本:2021.0.3
简单学习了下Gateway的配置
首先导入依赖,下方链接是使用过程中遇到的问题
使用Gateway出现Spring MVC found on classpath, which is incompatible with Spring Cloud Gateway.

 <dependencies>
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-gatewayartifactId>
        dependency>

        
        
        <dependency>
            <groupId>org.springframework.cloudgroupId>
            <artifactId>spring-cloud-starter-netflix-hystrixartifactId>
            <version>2.2.10.RELEASEversion>
        dependency>
        <dependency>
            <groupId>org.springframework.cloudgroupId

你可能感兴趣的:(SpringCloud,spring,cloud,学习,gateway)