springboot集成springCloud中gateway时启动报错的解决
在项⽬中引⼊springcloud中的gateway时报以下错误
Description:
Parameter 0 of method modifyRequestBodyGatewayFilterFactory in org.springframework.fig.GatewayAutoConfiguration
required a bean of type 'org.dec.ServerCodecConfigurer' that could not be found.
Action:
Consider defining a bean of type 'org.dec.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.fig.GatewayAutoConfiguration$NettyConfiguration.gatewayHttpClient(GatewayAutoConfiguration.java:622) The following method did not exist:
The method's class, sources.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 sources.ConnectionProvider
Disconnected from the target VM, address: '127.0.0.1:55875', transport: 'socket'
Process finished with exit code 1
这块主要是版本兼容的问题,
最初⽤的版本是:
<dependency>
<groupId>io.projectreactorty</groupId>
<artifactId>reactor-netty</artifactId>
<version>0.9.4.RELEASE</version>
reactor configuration</dependency>
⽹上有的是需要把这个版本降低,我这是降低了也不⾏
最后升⾼了版本改成了:
<dependency>
<groupId>io.projectreactorty</groupId>
<artifactId>reactor-netty</artifactId>
<version>0.9.14.RELEASE</version>
</dependency>
本项⽬⾥springboot版本为:2.3.1,根据⾃⼰项⽬需要吧,看⼀下⾃⼰项⽬中各个版本之间的问题
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论