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

16 lines
157 B
Groovy
Raw Normal View History

@RestController
class Application {
2014-05-20 20:13:39 +08:00
@Autowired
String foo
2014-05-20 20:13:39 +08:00
@RequestMapping("/")
String home() {
"Hello ${foo}!"
}
}
beans {
foo String, "World"
2014-05-20 20:13:39 +08:00
}