Skip to content

Instantly share code, notes, and snippets.

@learnit-codeit
Last active August 2, 2021 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save learnit-codeit/ef56eb5d775ecdf1ed1b23a29c791aff to your computer and use it in GitHub Desktop.
Save learnit-codeit/ef56eb5d775ecdf1ed1b23a29c791aff to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/user")
public class UserController {
@RequestMapping(value="/find", method = RequestMethod.GET)
public void findAllUsers() {
/**
* Adding user logic
*/
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment