Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created July 1, 2019 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recursivecodes/3fee274a482f2a456e31761fa667d53e to your computer and use it in GitHub Desktop.
Save recursivecodes/3fee274a482f2a456e31761fa667d53e to your computer and use it in GitHub Desktop.
UserRepository.java
@Path("/list")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getAllUsers() {
    return Response.ok(this.userRepository.findAll()).build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment