[bs-85] Change name of groovy sample script

This commit is contained in:
Dave Syer
2013-05-09 13:14:21 +01:00
parent c0148b4536
commit c65a224f4d
2 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package org.test
@Grab("org.springframework.bootstrap:spring-bootstrap-actuator:0.5.0.BUILD-SNAPSHOT")
@Controller
class SampleController {
@RequestMapping("/")
@ResponseBody
public def hello() {
[message: "Hello World!"]
}
}