springboot集成springCloud中gateway时启动报错的解决


Posted in Java/Android onJuly 16, 2021

在项目中引入springcloud中的gateway时报以下错误

Description:

Parameter 0 of method modifyRequestBodyGatewayFilterFactory in org.springframework.cloud.gateway.config.GatewayAutoConfiguration
required a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' that could not be found.

Action:
Consider defining a bean of type 'org.springframework.http.codec.ServerCodecConfigurer' in your configuration.

这个是由于依赖冲突,spring-cloud-starter-gateway与spring-boot-starter-web和spring-boot-starter-webflux依赖冲突

解决方式:

在引入gateway时过滤掉上面两个依赖

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-gateway</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-web</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-webflux</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

springboot整合gateway启动失败

问题:

springboot整合gateway启动失败

***************************
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
org.springframework.cloud.gateway.config.GatewayAutoConfiguration$NettyConfiguration.gatewayHttpClient(GatewayAutoConfiguration.java:622)
The following method did not exist:
reactor.netty.resources.ConnectionProvider.elastic(Ljava/lang/String;Ljava/time/Duration;Ljava/time/Duration;)Lreactor/netty/resources/ConnectionProvider;
The method's class, reactor.netty.resources.ConnectionProvider, is available from the following locations:
jar:file:/C:/Users/Administrator/.m2/repository/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar!/reactor/netty/resources/ConnectionProvider.class
It was loaded from the following location:
file:/C:/Users/Administrator/.m2/repository/io/projectreactor/netty/reactor-netty/0.9.1.RELEASE/reactor-netty-0.9.1.RELEASE.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of reactor.netty.resources.ConnectionProvider
Disconnected from the target VM, address: '127.0.0.1:55875', transport: 'socket'
Process finished with exit code 1

这块主要是版本兼容的问题,

最初用的版本是:

<dependency>
            <groupId>io.projectreactor.netty</groupId>
            <artifactId>reactor-netty</artifactId>
            <version>0.9.4.RELEASE</version>
        </dependency>

网上有的是需要把这个版本降低,我这是降低了也不行

最后升高了版本改成了:

<dependency>
            <groupId>io.projectreactor.netty</groupId>
            <artifactId>reactor-netty</artifactId>
            <version>0.9.14.RELEASE</version>
        </dependency>

本项目里springboot版本为:2.3.1,根据自己项目需要吧,看一下自己项目中各个版本之间的问题

以上为个人经验,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Java/Android 相关文章推荐
分享一些Java的常用工具
Jun 11 Java/Android
Java数据结构之链表相关知识总结
Jun 18 Java/Android
探讨Java中的深浅拷贝问题
Jun 26 Java/Android
JAVA API 实用类 String详解
Oct 05 Java/Android
Java实现房屋出租系统详解
Oct 05 Java/Android
SpringDataJPA在Entity中常用的注解介绍
Dec 06 Java/Android
Java中的随机数Random
Mar 17 Java/Android
Java 数据结构七大排序使用分析
Apr 02 Java/Android
详细介绍Java中的CyclicBarrier
Apr 13 Java/Android
Android studio 简单计算器的编写
May 20 Java/Android
Android 中的类文件和类加载器详情
Jun 05 Java/Android
Java Spring Boot请求方式与请求映射过程分析
Jun 25 Java/Android
JavaWeb 入门篇(3)ServletContext 详解 具体应用
JavaWeb 入门:Hello Servlet
JavaWeb 入门篇:创建Web项目,Idea配置tomcat
mybatis 获取无数据的字段不显示的问题
Jul 15 #Java/Android
Lombok的详细使用及优缺点总结
Jul 15 #Java/Android
Java Socket实现多人聊天系统
看完这篇文章获得一些java if优化技巧
You might like
PHP 提取图片img标记中的任意属性的简单实例
2013/12/10 PHP
Thinkphp5.0 框架的请求方式与响应方式分析
2019/10/14 PHP
jQuery弹出层始终垂直居中相对于屏幕或当前窗口
2013/04/01 Javascript
JS判断表单输入是否为空(示例代码)
2013/12/23 Javascript
js window.open弹出新的网页窗口
2014/01/16 Javascript
使用jquery.validate自定义方法实现&quot;手机号码或者固话至少填写一个&quot;的逻辑验证
2014/09/01 Javascript
jQuery将多条数据插入模态框的示例代码
2014/09/25 Javascript
js实现对table动态添加、删除和更新的方法
2015/02/10 Javascript
JS中append字符串包含onclick无效传递参数失败的解决方案
2016/12/26 Javascript
Vue中的数据监听和数据交互案例解析
2017/07/12 Javascript
JS HTML图片显示Canvas 压缩功能
2017/07/21 Javascript
[原创]js实现保存文本框内容为本地文件兼容IE,chrome,火狐浏览器
2018/02/14 Javascript
Python socket C/S结构的聊天室应用实现
2014/11/30 Python
selenium+python实现自动登录脚本
2018/04/22 Python
Python使用pyodbc访问数据库操作方法详解
2018/07/05 Python
python列表使用实现名字管理系统
2019/01/30 Python
两个元祖T1=('a', 'b'),T2=('c', 'd')使用匿名函数将其转变成[{'a': 'c'},{'b': 'd'}]的几种方法
2019/03/05 Python
如何运行.ipynb文件的图文讲解
2019/06/27 Python
python3字符串操作总结
2019/07/24 Python
python实现生成Word、docx文件的方法分析
2019/08/30 Python
Django中使用haystack+whoosh实现搜索功能
2019/10/08 Python
Python爬虫入门教程01之爬取豆瓣Top电影
2021/01/24 Python
css3实现背景动态渐变效果
2019/12/10 HTML / CSS
跨域修改iframe页面内容详解
2019/10/31 HTML / CSS
Alba Moda德国网上商店:意大利时尚女装销售
2016/11/14 全球购物
英国最大的纸工艺品商店:CraftStash
2018/12/01 全球购物
Kendra Scott官网:美国领先的时尚配饰品牌
2020/10/22 全球购物
高职助产应届生自荐信
2013/09/24 职场文书
婚礼证婚人证婚词
2014/01/13 职场文书
乔丹名人堂演讲稿
2014/05/24 职场文书
幼儿园老师新年寄语2015
2014/12/08 职场文书
售后前台接待岗位职责
2015/04/03 职场文书
黄河绝恋观后感
2015/06/08 职场文书
工作一年自我鉴定
2019/06/20 职场文书
原生JS中应该禁止出现的写法
2021/05/05 Javascript
OpenCV图像变换之傅里叶变换的一些应用
2021/07/26 Python