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.
輸入以下內容並檢視輸出 -
version
Spring CLI v2.0.5.RELEASE
可以按Tab
鍵自動完成命令,然後鍵入exit
以退出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>