Springbootcli 简明教程

Spring Boot CLI - Using Shell

Spring Boot CLI 提供了一个 Shell 界面来运行命令,我们可以在其中直接运行命令,如下所示。转到 E:\Test 文件夹,并键入以下命令。

E:/Test> spring shell

你将看到以下输出。

←[1mSpring Boot←[m←[2m (v2.6.3)←[m
Hit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit.
$

Running commands in Shell.

键入以下内容,并查看输出。

version
Spring CLI v2.6.3

你可以按 Tab 键自动完成命令,并键入 exit 完成 shell 控制台。

Testing the application in shell

键入以下内容,并查看输出。

$ exit
E:\Test\FirstApplication>