Last active
August 27, 2021 20:07
-
-
Save j-tim/98502d775995aa05791dd9cf250cc81f to your computer and use it in GitHub Desktop.
Spring Boot Hello World Web application using Groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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