Spring Boot CLI默認語句

Spring CLI默認自動導入許多庫,因此不需要顯式導入。 考慮以下groovy腳本。

@RestController
class FirstApplication {
   @RequestMapping("/")
   String welcome() {
      "Welcome to Yiibai.Com"
   }
}

這裏導入[@RestController](https://github.com/RestController "@RestController"),默認情況下,Spring Boot已經包含[@RequestMapping](https://github.com/RequestMapping "@RequestMapping")註釋。 甚至不需要使用完全限定的名稱。可以通過運行應用程序進行檢查。

輸入以下命令 -

D:\worksp\springboot-cli> spring run FirstApplication.groovy

可以在控制檯上看到以下輸出 -

  .   ____          _            __ _ _
 /\\ / ___\'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | \'_ | \'_| | \'_ \/ _> | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  \'  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: 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)

自動main方法

不需要爲groovy腳本創建標準的main方法來初始化spring應用程序。它是由spring boot應用程序自動創建的。