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>