hello,when I use spring webflux as controller to execute non-blocked thread request,I want to use feign to communication with two servcie,How to config it

Comment From: OlgaMaciaszek

Hello @jingzhanjun . The support for WebFlux will be added to Spring Cloud OpenFeign only once the upstream Feign project has introduced reactive support. We recommend using https://github.com/Playtika/feign-reactive as an alternative. Please see the docs.

Alternatively, you might want to use Retrofit as a declarative HTTP client. We provide support for it within Spring Cloud Square.

Comment From: OlgaMaciaszek

UPDATE: As of Spring Cloud 2022.0.x, the suggested replacements that allows creating reactive WebFlux-backed declarative clients is Spring Cloud Interface Clients available as part of Framework. You can also see a sample repo here.