此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Shell 3.3.3spring-doc.cn

注解

@Command注解时,将其标记为命令注册的候选项。 在下面的示例中,定义了一个命令。examplespring-doc.cn

class Example {

	@Command(command = "example")
	public String example() {
		return "Hello";
	}
}

@Command注解可以放置在定义 defaults 或 shared settings 的类上 对于同一类中定义的方法。在下面的示例中,命令是 定义。@Commandparent examplespring-doc.cn

@Command(command = "parent")
class Example {

	@Command(command = "example")
	public String example() {
		return "Hello";
	}
}

使用 a 不会自动注册命令目标,而是需要使用 and/或 annotations。这个模型与其他部分很相似 Spring 伞,为用户提供更好的灵活性,使其具有包容性而不是排他性 对于命令目标。@Command@EnableCommand@CommandScanspring-doc.cn

您可以使用 定义目标类。它将从所有 Configuration 类中选取。@EnableCommandspring-doc.cn

@EnableCommand(Example.class)
class App {
}

您可以使用 定义目标类。它将从所有 Configuration 类中选取。@CommandScanspring-doc.cn

在顶层的 Spring Boot 类中定义,它将自动 扫描 下所有包和类中的所有命令目标。@CommandScanAppApp
@CommandScan
class App {
}