Spring CLI默认自动导入许多库,因此不需要显式导入。 考虑以下groovy脚本。
@RestController
class FirstApplication {
@RequestMapping(“/”)
String welcome() {
“Welcome to Yiibai.Com”
}
}
Java
这里导入@RestController,默认情况下,Spring Boot已经包含@RequestMapping注释。 甚至不需要使用完全限定的名称。可以通过运行应用程序进行检查。
输入以下命令 -
D:\worksp\springboot-cli> spring run FirstApplication.groovy
Shell
可以在控制台上看到以下输出 -
. ____ _ __ _ _
/\ / ’ __ _ () __ __ _ \ \ \
( ( )__ | '_ | '| | ’ / > | \ \ \
\/ )| |)| | | | | || (| | ) ) ) )
’ || .__|| ||| |_, | / / / /
=========||==============|/=////
:: Spring Boot :: (v2.0.5.RELEASE)
…
2018-09-07 19:22:17.310 INFO 4824 — [ runner-0] o.s.boot.SpringApplication
: Started application in 3.405 seconds (JVM running for 7.021)
Shell
自动main方法不需要为groovy脚本创建标准的main方法来初始化spring应用程序。它是由spring boot应用程序自动创建的。