spring-boot/spring-boot-cli/samples/beans.groovy
Phillip Webb 8bcda1bcbe Polish
2014-05-20 18:26:56 +01:00

16 lines
157 B
Groovy

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