Add support for reactive JDK HTTP Client.

Closes gh-737
This commit is contained in:
Mark Paluch
2022-11-16 15:42:08 +01:00
parent 73d6777dad
commit 0b442cfe32
3 changed files with 80 additions and 15 deletions

View File

@@ -8,12 +8,13 @@ that is scoped only to Spring Vault's client components.
Spring Vault supports following HTTP imperative clients:
* Java's builtin `HttpURLConnection` (default client)
* Java's builtin `HttpURLConnection` (default client if no other is available)
* Apache Http Components
* OkHttp 3
Spring Vault's reactive integration supports the following reactive HTTP clients:
* Java's builtin reactive `HttpClient` (default client if no other is available)
* Reactor Netty
* Apache Http Components
* Jetty