Skip to content

Instantly share code, notes, and snippets.

@j-tim
Last active August 27, 2021 20:07
Show Gist options
  • Save j-tim/98502d775995aa05791dd9cf250cc81f to your computer and use it in GitHub Desktop.
Save j-tim/98502d775995aa05791dd9cf250cc81f to your computer and use it in GitHub Desktop.
Spring Boot Hello World Web application using Groovy
@RestController
class SpringBootWebApplication {
@RequestMapping("/")
String hello() {
"Hello world container. You are able to reach the Docker host!\n"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment