Webclient maven Dependency errors
问题 I am getting a NoClassDefFoundError on the line where I try to create WebClient instance using ' create '. Tried builder() but still the same thing. Please tell me what's wrong with the dependencies which I have added and how this issue can be solved. webClient = WebClient.create(url) .post() .uri(uri) .contentType(MediaType.APPLICATION_JSON) .body(BodyInserters.fromMultipartData(map)) .retrieve() .bodyToMono(Object.class) .block() .toString() dependencies which I added are <dependency>