Created
November 10, 2017 19:29
-
-
Save g00glen00b/bd695f21ba8620e3d705ee56e26f2234 to your computer and use it in GitHub Desktop.
PersonController.java
This file contains hidden or 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
@GetMapping("/person") | |
Flux<Person> list() { | |
return this.repository.findAll(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment