Files
spring-boot/spring-boot-cli/samples/ops.groovy
2013-07-31 01:11:10 -07:00

16 lines
230 B
Groovy

package org.test
@Grab("org.springframework.boot:spring-boot-starter-ops:0.5.0.BUILD-SNAPSHOT")
@Controller
class SampleController {
@RequestMapping("/")
@ResponseBody
public def hello() {
[message: "Hello World!"]
}
}