Building an Application with Spring Boot :: Learn how to build an application with minimal configuration. https://spring.io/guides/gs/spring-boot/

app.groovy 128B

123456789
  1. @RestController
  2. class ThisWillActuallyRun {
  3. @RequestMapping("/")
  4. String home() {
  5. return "Hello World!"
  6. }
  7. }