10.2.6. Spring CLI示例快速入门
@RestController
class ThisWillActuallyRun {
@RequestMapping("/")
String home() {
"Hello World!"
}
}$ spring run app.groovyHello World!Last updated
Was this helpful?
@RestController
class ThisWillActuallyRun {
@RequestMapping("/")
String home() {
"Hello World!"
}
}$ spring run app.groovyHello World!Last updated
Was this helpful?
Was this helpful?