Created
March 26, 2020 21:18
-
-
Save ksurendra/301eb3fa9828fccec8d0d7f05467706f to your computer and use it in GitHub Desktop.
WebClient for the REST API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.engg.java.reactive; | |
import org.springframework.http.MediaType; | |
import org.springframework.web.reactive.function.client.ClientResponse; | |
import org.springframework.web.reactive.function.client.WebClient; | |
import reactor.core.publisher.Mono; | |
import reactor.core.publisher.Flux; | |
import com.engg.java.reactive.reqres.User; | |
public class ReqResWebClient { | |
private WebClient webClient = WebClient.create("https://jsonplaceholder.typicode.com"); | |
private Mono<ClientResponse> responseMono = webClient.get() | |
.uri("/todos/1") | |
.accept(MediaType.APPLICATION_JSON) | |
.exchange(); | |
public String getResult() { | |
return ">> Result Mono<ClientResponse> = " + responseMono.flatMap(res -> res.bodyToMono(String.class)).block(); | |
} | |
public Flux<User> listUser1() { | |
return webClient.get() | |
.uri("/todos/1") | |
.retrieve() | |
.bodyToFlux(User.class); | |
} | |
public String getUser1() { | |
return ">> Get Flux<User> retrieve() example = " + listUser1().collectList().doOnNext(l1 -> System.out.println("PRINT 1=" + l1)).subscribe(); | |
} | |
public Flux<User> listUser2() { | |
return webClient.get() | |
.uri("/todos/1") | |
.exchange() | |
.flatMapMany(clientResponse -> clientResponse.bodyToFlux(User.class)); | |
} | |
public String getUser2() { | |
//return ">> Get Users 2= " + listUsers2(); | |
return ">> Get Flux<User> exchange() example = " + listUser2().collectList().doOnNext(l2 -> System.out.println("PRINT 2=" + l2)).subscribe(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment