开发手册 欢迎您!
软件开发者资料库

Spring Boot CLI - 使用Shell

使用Shell的Spring Boot CLI - 从基本到高级概念的简单简单步骤学习Spring Boot CLI,其中包括概述,环境设置,Hello World示例,抓取依赖性扣除,抓取协调扣除,默认声明,Starter Thymeleaf项目,测试应用程序,打包应用程序,创建项目,使用Shell。

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

E:/Test> spring shell

上面的命令将生成以下输出 :

?[1mSpring Boot?[m?[2m (v1.5.8.RELEASE)?[mHit TAB to complete. Type 'help' and hit RETURN for help, and 'exit' to quit.

在Shell中运行命令

在本节中,我们将学习如何在Shell中运行命令.输入以下内容并查看输出 :

versionSpring CLI v1.5.8.RELEASE

您可以按Tab键自动完成命令并输入exit以完成shell控制台.

在shell中测试应用程序

现在让我们学习如何在shell中测试应用程序.输入以下代码行并查看输出 :

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