对于最新的稳定版本,请使用 Spring Shell 3.3.3! |
确认
确认组件要求用户进行简单确认。它本质上是一个 是或否问题。
@ShellComponent
public class ComponentCommands extends AbstractShellComponent {
@ShellMethod(key = "component confirmation", value = "Confirmation input", group = "Components")
public String confirmationInput(boolean no) {
ConfirmationInput component = new ConfirmationInput(getTerminal(), "Enter value", !no);
component.setResourceLoader(getResourceLoader());
component.setTemplateExecutor(getTemplateExecutor());
ConfirmationInputContext context = component.run(ConfirmationInputContext.empty());
return "Got value " + context.getResultValue();
}
}
以下截屏视频显示了确认组件的典型输出:
上下文对象是 .下表描述了其上下文变量:ConfirmationInputContext
钥匙 | 描述 |
---|---|
|
默认值 — 或 。 |
|
父上下文变量(请参阅 TextComponentContext 模板变量)。 |