Skip to content

Instantly share code, notes, and snippets.

@pedroveras
Created December 6, 2020 15:41
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 pedroveras/ff82f9ebd619bf6b73ed6b09e705e8db to your computer and use it in GitHub Desktop.
Save pedroveras/ff82f9ebd619bf6b73ed6b09e705e8db to your computer and use it in GitHub Desktop.
@RestController
public class HelloController {
@GetMapping("/hello")
public ResponseEntity<String> hello() {
return ResponseEntity.ok().body("hello");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment