spring-shell
spring-shell copied to clipboard
Spring based shell
Not sure if this is the right place to put this issue. I was trying to build the spring-statemachine project with gradle. I got the error further below. On examining...
I would like to write a REPL application that works like mysql-client. Using ```java @ShellMethod(value = "READ data from DB.", key={"select", "SELECT"}) public String select( @ShellOption(arity = Integer.MAX_VALUE, valueProvider =...
I have an issue regarding the CommandCompletion for @Commands which have Options with an arity with ONE_OR_MORE. I have a command like this: ``` @Command(command = "indexer index",) public String...
**Software:** - Spring Boot: 3.4.0 - Spring Shell: 3.4.0 - GraalVM: graalvm-jdk-23.0.1+11.1 - Java: 21 **What I’m doing:** Creating a Spring Shell application and compiling it in native mode. The...
When I try to run `ProgressView`, it seems to finish incorrectly. For example, in the sample code: ```java @Bean public ApplicationListener applicationStartedListener(ViewComponentBuilder viewComponentBuilder) { return event -> { ProgressView.ProgressViewItem text...
 - Version: SpringShell 3.3.1 - Desc: I use nonInteractive mode, but find the default runner may change my origin command and concat "\"" to my command, which may cause...
Although there are exceptions, the program can be started and used normally, but so many errors are confusing errors: ` 2024-12-02 12:06:03.603 |-DEBUG [main] com.test.SpringShellMain [51] -| Running with Spring...
I am having trouble validating multiple required Option, here's my example: ```java @Command(command = "dataset", group = "Dataset Commands") class DatasetCommands { @Command(command = "describe", description = "Describe a dataset...
If matching String just after "\\" char (on windows) breaking rendering: 
This is related to https://github.com/spring-projects/spring-shell/issues/979 I spent some time this afternoon with a very simple start: - added method to separate key=value pairs and to add key and value to...