Guest User

Untitled

a guest
Mar 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. client
  2. .get()
  3. .uri("/people/{id}", "a4f66fe5-7c1b-4bcf-89b4-93d8fcbc52a4")
  4. .accept(APPLICATION_JSON)
  5. .exchange()
  6. .flatMap(response -> response.bodyToMono(Person.class))
  7. .subscribe(person -> System.out.println("GET: " + person));
Add Comment
Please, Sign In to add comment