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

作者:蓝色格子 时间:2021-09-05 09:51:34 

在项目中引入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,根据自己项目需要吧,看一下自己项目中各个版本之间的问题

来源:https://blog.csdn.net/github_38924695/article/details/99650634

标签:springboot,springCloud,gateway
0
投稿

猜你喜欢

  • Flutter图片缓存管理ImageCache原理分析

    2023-08-20 23:26:19
  • Android 老生常谈LayoutInflater的新认知

    2023-01-02 07:01:08
  • Android学习笔记--使用剪切板在Activity中传值示例代码

    2022-12-21 13:43:58
  • java高并发之线程组详解

    2023-02-15 21:30:25
  • 快速学习六大排序算法

    2023-11-02 22:36:19
  • 详解SpringSecurity中的Authentication信息与登录流程

    2022-01-20 21:36:22
  • struts2 validation.xml 验证规则代码解析

    2021-09-14 22:01:27
  • Java 实战项目之CRM客户管理系统的实现流程

    2022-12-01 22:50:54
  • Spring Cloud中FeignClient实现文件上传功能

    2023-06-23 07:57:09
  • java实现6种字符串数组的排序(String array sort)

    2023-06-04 16:10:20
  • Java排序的那些事之sort方法的使用详解

    2023-01-22 00:18:35
  • Java 散列存储详解及简单示例

    2022-06-30 23:19:52
  • Android编程开发之性能优化技巧总结

    2022-08-26 13:23:00
  • C# 扩展方法的使用

    2022-04-05 14:46:24
  • Android 5秒学会使用手势解锁功能

    2023-07-11 13:48:32
  • java selenium Selenium IDE介绍及用法

    2023-11-21 06:41:22
  • springboot2.0使用Hikari连接池的方法(替换druid)

    2023-04-12 00:54:33
  • Android的ImageButton当显示Drawable图片时就不显示文字

    2023-11-25 17:40:00
  • android电源信息查看(电量、温度、电压)实例代码

    2022-04-30 15:41:04
  • Java数据结构之线段树中的懒操作详解

    2021-08-20 00:21:52
  • asp之家 软件编程 m.aspxhome.com