作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是在执行@ShellMethod
期间捕获用户输入的一种方法。基本上停止执行该方法以请求用户输入并在捕获它后继续执行。
最佳答案
这里有可能的解决方案:https://stackoverflow.com/a/50954716 ,作者 ZachOfAllTrades
它仅在您的应用基于 SpringBoot 时才有效,因此您可以访问由 SpringBoot 配置的 LineReader
对象。
@Autowired
LineReader reader;
public String ask(String question) {
return this.reader.readLine("\n" + question + " > ");
}
@ShellMethod(key = { "setService", "select" }, value = "Choose a Speech to Text Service")
public void setService() {
boolean success = false;
do {
String question = "Please select a service.";
// Get Input
String input = this.ask(question);
// Input handling
/*
* do something with input variable
*/
success = true;
}
} while (!success);
}
不过我自己没有尝试过。
关于spring-shell - Spring Shell - 在执行 ShellMethod 过程中捕获用户输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48099847/
是在执行@ShellMethod期间捕获用户输入的一种方法。基本上停止执行该方法以请求用户输入并在捕获它后继续执行。 最佳答案 这里有可能的解决方案:https://stackoverflow.com
是在执行@ShellMethod期间捕获用户输入的一种方法。基本上停止执行该方法以请求用户输入并在捕获它后继续执行。 最佳答案 这里有可能的解决方案:https://stackoverflow.com
我是一名优秀的程序员,十分优秀!