mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 09:09:01 +00:00
16 lines
222 B
Groovy
16 lines
222 B
Groovy
package org.test
|
|
|
|
@Grab("org.springframework.zero:spring-actuator:0.5.0.BUILD-SNAPSHOT")
|
|
|
|
@Controller
|
|
class SampleController {
|
|
|
|
@RequestMapping("/")
|
|
@ResponseBody
|
|
public def hello() {
|
|
[message: "Hello World!"]
|
|
}
|
|
}
|
|
|
|
|