spring-shell icon indicating copy to clipboard operation
spring-shell copied to clipboard

Spring based shell

Results 121 spring-shell issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

status/need-triage

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 =...

status/need-triage

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...

status/need-triage

**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...

status/need-triage

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...

status/need-triage

![NonInteractiveShellRunner](https://github.com/user-attachments/assets/1f156f2d-61f4-4246-b967-e6b1534b38a3) - 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...

status/need-feedback

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...

status/need-triage

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...

status/need-triage

If matching String just after "\\" char (on windows) breaking rendering: ![image](https://github.com/user-attachments/assets/a090fef1-29d3-4c4a-be7d-e9dd5675caad)

status/need-triage

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...