spring-boot/spring-boot-cli/samples/beans.groovy

13 lines
154 B
Groovy

@RestController
class Application {
@Autowired
String foo
@RequestMapping("/")
String home() {
"Hello ${foo}!"
}
}
beans {
foo String, "World"
}