一.问题: 导入网关gateway依赖爆红

我想大家都遇到过这样的问题吧 对于这样的依赖爆红,如果你已经下载了正确的jar包或者说把正确的本地仓库jar包替换掉了原来不正确的,依然爆红。那么其实是 因为:
环境:
SpringCloud 版本 ---- Finchley.SR2
SpringBoot 版本 ---- 2.0.6.RELEASE

问题描述:
将 zuul 网关升级为 gateway 时,引入gateway 依赖启动网关子项目报错

  • 引入的依赖:
在这里插入代码片
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
  • 而导入以上gateway网关依赖会报以下错
    在这里插入图片描述
    回顾一下 zuul 和 gateway 的区别
    Zuul: 构建于 Servlet 2.5,兼容3.x,使用的是阻塞式的API,不支持长连接,比如 websockets。
    Gateway构建于 Spring 5+,基于 Spring Boot 2.x 响应式的、非阻塞式的 API。同时,它支持 websockets,和 Spring 框架紧密集成
    报错原因:启动时默认使用了 spring-boot-starter-web 的内置容器,不支持非阻塞
    问题解决
  1. 在gateway模块中: gateway依赖中 将gateway中的“spring-boot-starter-webflux” 去掉可以编译成功 ,可以编译成功
 <!--引入gateway 网关-->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-gateway</artifactId>
            <!--排除gateway 内部不兼容的 spring-webflux -->
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-webflux</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

但是会出现 “Spring Webflux is missing from the classpath, which is required for Spring Cloud Gateway at this time. Please add spring-boot-starter-webflux dependency.”。
在这里插入图片描述
2.解决:

再手动重新加上一个spring-boot-starter-webflux的依赖:

 		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
            <version>2.1.0.RELEASE</version>
        </dependency>

( 注意 我说的是极个别: 第一次可能加上这个坐标后,右边的maven还是显示红色, 但是不要慌,这个时候可能是idea.还没反应过来,你可以运行下启动类.)

在这里插入图片描述
也能够访问自己配置的虚拟路径端口号:80了(本地80可以省略)
在这里插入图片描述
在这里插入图片描述

GitHub 加速计划 / sp / spring-boot
73.97 K
40.4 K
下载
spring-projects/spring-boot: 是一个用于简化Spring应用开发的框架。适合用于需要快速开发企业级Java应用的项目。特点是可以提供自动配置、独立运行和内置的Tomcat服务器,简化Spring应用的构建和部署。
最近提交(Master分支:1 个月前 )
06f0b914 Add `@Order` to `WebSocketMessageConverterConfiguration` so that custom `WebSocketMessageBrokerConfigurer` implementations can be added before or after ours. Fixes gh-42924 7 小时前
c2ab2ddd * pr/42966: Support timeout property for GraphQL over SSE Closes gh-42966 11 小时前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐