Spring Boot CLI使用Shell


Spring Boot CLI提供了一個Shell介面來執行命令,可以在其中直接執行命令,如下所示。 轉到E:/Test檔案夾並鍵入以下命令 -

E:/Test> spring shell

將會看到以下輸出:

?[1mSpring Boot?[m?[2m (v2.0.5.RELEASE)?[m
Hit TAB to complete. Type \'help\' and hit RETURN for help, and \'exit\' to quit.

在Shell中執行命令

輸入以下內容並檢視輸出 -

version
Spring CLI v2.0.5.RELEASE

可以按Tab鍵自動完成命令,然後鍵入exit以退出shell控制台。

在shell中測試應用程式

輸入以下內容並檢視輸出 -

E:\Test\FirstApplication>spring shell
?[1mSpring Boot?[m?[2m (v2.0.5.RELEASE)?[m
Hit TAB to complete. Type \'help\' and hit RETURN for help, and \'exit\' to quit.
$ test FirstApplication.groovy TestFirstApplication.groovy
.
Time: 0.347

OK (1 test)

$ exit
E:\Test\FirstApplication>