mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
16 lines
157 B
Groovy
16 lines
157 B
Groovy
@RestController
|
|
class Application {
|
|
|
|
@Autowired
|
|
String foo
|
|
|
|
@RequestMapping("/")
|
|
String home() {
|
|
"Hello ${foo}!"
|
|
}
|
|
}
|
|
|
|
beans {
|
|
foo String, "World"
|
|
}
|