From ad776a43b5dafa65e5e967e93cc6666351d569c2 Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Wed, 27 May 2020 20:13:33 +0200 Subject: [PATCH] Add info on reactive-feign to docs. Fixes gh-313. --- docs/src/main/asciidoc/spring-cloud-openfeign.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc index 2cadbeb3..a3fc481c 100644 --- a/docs/src/main/asciidoc/spring-cloud-openfeign.adoc +++ b/docs/src/main/asciidoc/spring-cloud-openfeign.adoc @@ -582,8 +582,10 @@ public interface DemoTemplate { } ---- +=== Reactive Support +As the https://github.com/OpenFeign/feign[OpenFeign project] does not currently support reactive clients, such as https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/reactive/function/client/WebClient.html[Spring WebClient], neither does Spring Cloud OpenFeign. We will add support for it here as soon as it becomes available in the core project. -=== Troubleshooting +Until that is done, we recommend using https://github.com/Playtika/feign-reactive[feign-reactive] for Spring WebClient support. ==== Early Initialization Errors