mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
14 lines
214 B
Groovy
14 lines
214 B
Groovy
package org.test
|
|
|
|
@Grab("spring-boot-starter-security")
|
|
@Grab("spring-boot-starter-actuator")
|
|
|
|
@RestController
|
|
class SampleController {
|
|
|
|
@RequestMapping("/")
|
|
public def hello() {
|
|
[message: "Hello World!"]
|
|
}
|
|
}
|