You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
176 B
Groovy
13 lines
176 B
Groovy
12 years ago
|
package org.test
|
||
|
|
||
11 years ago
|
@Grab("spring-boot-starter-actuator")
|
||
12 years ago
|
|
||
11 years ago
|
@RestController
|
||
12 years ago
|
class SampleController {
|
||
|
|
||
|
@RequestMapping("/")
|
||
|
public def hello() {
|
||
|
[message: "Hello World!"]
|
||
|
}
|
||
|
}
|