Spring Boot CLI預設語句


Spring CLI預設自動匯入許多庫,因此不需要顯式匯入。 考慮以下groovy指令碼。

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

這裡匯入@RestController,預設情況下,Spring Boot已經包含@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應用程式自動建立的。