Ops -> Actuator

This commit is contained in:
Phillip Webb
2013-07-31 12:57:25 -07:00
parent d1ceed2f7d
commit 4c067a89fe
5 changed files with 6 additions and 6 deletions

View File

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