Skip to content

Instantly share code, notes, and snippets.

@hakaneroztekin
Created June 12, 2022 11:39
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 hakaneroztekin/bd4cc181930566e7bb8ea30d6c2f75f5 to your computer and use it in GitHub Desktop.
Save hakaneroztekin/bd4cc181930566e7bb8ea30d6c2f75f5 to your computer and use it in GitHub Desktop.
example-spring-app [docker in a nutshell]
@RestController
@RequestMapping("/")
public class GreetingsController {
@GetMapping
public String helloWorld() {
return "Hello World!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment