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.
16 lines
157 B
Groovy
16 lines
157 B
Groovy
11 years ago
|
@RestController
|
||
|
class Application {
|
||
11 years ago
|
|
||
11 years ago
|
@Autowired
|
||
|
String foo
|
||
11 years ago
|
|
||
11 years ago
|
@RequestMapping("/")
|
||
|
String home() {
|
||
|
"Hello ${foo}!"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
beans {
|
||
|
foo String, "World"
|
||
11 years ago
|
}
|