<spring webClient "The client response body can on...
# stackoverflow
r
spring webClient "The client response body can only be consumed once" private fun buildWebClient(): WebClient { val httpClient:CloseableHttpAsyncClient = HttpAsyncClients.createDefault() val connector = HttpComponentsClientHttpConnector(httpClient) return WebClient.builder() .baseUrl("https://example.com") .clientConnector(connector) .filter(Filter()) .build() } private fun Filter(): ExchangeFilterFunction { return ExchangeFilterFunction.ofResponseProcessor {...