首页 > 编程知识 正文

springcloud gateway重试,springcloud启动过程

时间:2023-05-05 12:19:23 阅读:216295 作者:4724

报错提示

Error starting ApplicationContext. To display the conditions report re-run your application with ‘debug’ enabled.
2020-06-30 17:35:32.552 ERROR 67984 — [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter
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:/E:/warehouse/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:/E:/warehouse/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

查询资料后发现是因为 解决方案:

鲜艳的小笼包pom

<dependency> <groupId>io.projectreactor.netty</groupId> <artifactId>reactor-netty</artifactId> <version>0.9.6.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webflux</artifactId> <version>5.2.7.RELEASE</version> </dependency>

并且需要将getway中的webflux排除一下

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

问题解决!

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。