spring-cloud-samples/spring-cloud-gateway-sample

Import Error In GatewayAutoConfiguration.class

bigshi opened this issue · 1 comments

import reactor.ipc.netty.http.client.HttpClient; import reactor.ipc.netty.http.client.HttpClientOptions; import reactor.ipc.netty.options.ClientProxyOptions; import reactor.ipc.netty.resources.PoolResources;

Are these import package names correct?
example:
I noticed that HttpClient.class package name is reactor.netty.http.client in reactor-netty-0.8.2.RELEASE.jar

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency>
org.springframework.boot:spring-boot-starter-webflux:2.1.0.RELEASE
org.springframework.boot:spring-boot-starter-reactor-netty:2.1.0.RELEASE
io.projectreactor.netty:reactor-netty:0.8.2.RELEASE

<!-- https://mvnrepository.com/artifact/io.projectreactor.ipc/reactor-netty --> <dependency> <groupId>io.projectreactor.ipc</groupId> <artifactId>reactor-netty</artifactId> <version>0.7.10.RELEASE</version> </dependency>
Maybe you need to add it separately