用户自定义命令指南
用户定义命令允许您向 Spring CLI 添加自定义命令。命令的目录结构表示引入到 shell 中的命令和子命令。
例如,controller\new
的目录结构在 CLI 中转换为命令 controller new
。
子命令目录中位于的文件为
-
一个名为
command.yaml
的文件,用于描述命令及其参数。 -
一个或多个操作文件,用于描述向项目添加代码或配置的操作。
用户定义命令使用以下命令在 CLI 中注册
command add --from <repository-url>
该存储库的内容将复制到您现有的项目中。
例如,查看 github.com/rd-1-2022/udc-spring-controller 存储库的内容。
结构
所有用户定义命令的目录结构位于以下路径下
.spring/commands
因此,对于前面提到的用户定义命令 controller new
,命令描述文件和操作文件所在的完整目录结构将是
.spring/commands/controller/new
在此目录中,您可以定义
-
描述命令的功能和命令参数的
command.yaml
文件。 -
一个或多个定义此命令要运行的操作的操作文件。
例如,github.com/rd-1-2022/udc-spring-controller 存储库的目录内容如下
.
├── README.adoc
└── .spring
└── commands
└── controller
└── new
├── command.yaml
├── create-controller.yaml
└── RestController.java
描述命令
前面提到的 controller new
命令的 command.yaml
文件内容如下
command:
description: Generate a new Spring Controller
options:
#
- name: feature
description: name of the feature package
dataType: string
defaultValue: person
inputType: text
required: true
该文件包含命令的简要描述和命令行选项的数组。
选项的 name
是必需的。默认的 dataType
为 string
。
dataType
可以是 int
、integer
、bool
、boolean
、double
、float
、long
、short
或 string
。
Spring CLI 在运行时合并这些命令,并在请求常规帮助和特定命令帮助时显示它们。以下列表显示了一个示例
$spring help
<output truncated>
User-defined Commands
controller new: Generate a new Spring Controller
以下列表显示了第二个示例
$ spring help controller new
NAME
controller new - Generate a new Spring Controller
SYNOPSIS
controller new --feature String
OPTIONS
--feature String
name of the feature package
[Optional, default = person]
操作文件
操作文件的结构类似于 GitHub 操作文件。
操作文件可以命名为任何您喜欢的名称。CLI 会查找具有 .yaml
和 .yml
文件扩展名的文件。
您可以根据需要创建任意数量的操作文件来完成特定任务。操作文件运行的顺序是深度优先,然后按字母顺序。
以下列表显示了一个简单的示例
actions:
- generate:
to: hello.txt
text: Hello at {{now}} on {{os-name}}.
此操作在当前工作目录中生成一个名为 hello.txt
的文件(如果该文件尚不存在)。模板内容包含 kebab-case 变量名。
user-name
和 os-name
变量来自 Java 系统属性,并自动注册到模板引擎。now
变量是运行命令时 new java.util.Date()
的值。
作为更真实的创建 Java 代码的示例,以下三个列表显示了名为 Controller.java
的操作文件及其相关操作和模板化 Java 文件在存储库 github.com/rd-1-2022/udc-spring-controller 中的内容。feature
变量是一个命令选项。
-
命令文件
command:
description: Generate a new Spring Controller
options:
#
- name: feature
description: name of the feature package
dataType: string
defaultValue: person
inputType: text
-
操作文件
actions:
- generate:
to: src/main/java/{{root-package-dir}}/{{feature}}/{{capitalizeFirst feature}}Controller.java
from: RestController.java
to:
字段定义要生成的文件的位置。
如果要生成的文件已存在,则除非在与 to:
字段相同的级别添加名为 overwrite:
的附加字段,否则不会覆盖它。
-
模板化 Java 文件
package {{root-package}}.{{feature}};
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class {{capitalizeFirst feature}}Controller {
@GetMapping("/{{feature}}")
public String greeting() {
return "Hello {{feature}}";
}
}
所有命令行参数都作为变量传递给模板引擎。在这种情况下,传递了 feature
选项。
一个有用的内置变量是 root-package-dir
,它是包含 @SpringApplication
注解的类的目录。
模板引擎
模板引擎是 Handlebars。默认情况下注册了几个 Handlebars 助手
在前面的示例中,{{capitalizeFirst feature}}
模板变量是使用 Handlebars 帮助器的一个示例。
默认情况下,几个系统变量会被暴露给模板引擎。
-
System.getProperties()
可通过{{system-properties}}
访问。 -
System.getenv()
可通过{{system-environment}}
访问。 -
当前时间(由
new Date().toString()
定义)可通过{{now}}
访问。 -
java.io.tmpdir
系统属性可通过{{tmp-dir}}
访问。 -
file.separator
系统属性可通过{{file-separator}}
访问 *os.name
系统属性可通过{{os-name}}
访问。 -
user.name
系统属性可通过{\{user.name}}
访问。
包含 Spring Boot 主应用程序类的 Java 包名称可通过 {{root-package}}
访问。
Spring Boot 主应用程序类所在的目录可通过 {{root-package-dir}}
访问。
Maven 模型也暴露了几个变量。
-
{{artifact-id}}
-
{{artifact-version}}
-
{{artifact-path}}
-
{{project-name}}
-
{{project-descriptoin}}
-
{{maven-model}}
- 这是 org.apache.maven.model.Model 类。 -
{{maven-properties}}
- 这是一个 Java 属性对象,其键是 POM 的<properties>
部分中每个条目的值。 -
{{java-version}}
- 它在 POM 中查找名为java.version
的 Maven 属性。如果值为1.8
,则将其转换为8
。
创建新的用户定义命令
一个简单的入门方法是运行以下命令。
spring command new hello create
这将创建一个名为 hello
的用户定义命令,并带有一个名为 create
的子命令。
可以通过运行 spring command new --help
查看 spring command new
的完整选项集。以下列表显示了输出内容。
$ spring command new --help
NAME
command new - Create a new user-defined command
SYNOPSIS
command new --commandName String --subCommandName String --path String --help
OPTIONS
--commandName String
The name of the user-defined command to create
[Optional, default = hello]
--subCommandName String
The name of the user-defined sub-command to create
[Optional, default = new]
--path String
Path to execute command in
[Optional]
--help or -h
help for command new
[Optional]
运行 spring command new hello create
将生成以下目录结构和文件。
.
├── README.adoc
└── .spring
└── commands
└── hello
└── create
├── command.yaml
└── hello.yaml
以下列表显示了 command.yaml
文件的内容。它包含一个名为 greeting
的命令行参数。
command:
description: Generate a new file with a hello message
options:
#
- name: greeting
description: who or what to say hello to
dataType: string
defaultValue: World
inputType: text # TEXT
以下列表显示了名为 hello.yaml
的操作文件。它生成名为 hello.txt
的文件。
actions:
- generate:
to: hello.txt
text: Hello {{greeting}} at {{now}} on {{os-name}}.
当您运行 spring help
命令时,该命令将列在“用户定义命令”标题下。
...
User-defined Commands
hello create: Generate a new file with a hello message
运行 spring hello create
命令将生成 hello.txt
文件,其内容如下。
Hello World at Mar 9, 2023 on Linux.
了解更多
操作指南 描述了您可以在操作文件中使用的所有选项(用于向项目添加或修改代码和配置)。