Issue with Spring Webflux webclient , nothing happens when trying to send post request
问题 Have the following implementation of webclient : public <T> WebClient.ResponseSpec sendRequest(HttpMethod method, String contentType, T body, String baseUrl, String path) { try { WebClient webClient = WebClient.builder().baseUrl(baseUrl).filter(logRequest()).build(); WebClient.ResponseSpec responseSpec = webClient.method(method) .uri(path) .header(HttpHeaders.CONTENT_TYPE, contentType) .body(BodyInserters.fromObject(body)) .retrieve(); return responseSpec; } catch (Exception e) { throw new