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

Hi, I found a bug when I tried to use line continuation: prompt: >help he\ >lp Unknown command 'he lp' I expect the above one should work, but it add...

type/technical-debt

This project has vary little instructions for contributing. It should have a prescription for contributors, something like what [Spring Cloud](https://github.com/spring-cloud/spring-cloud-build#contributing) uses. Additionally enable format and checkstyle validation as described [here](https://github.com/spring-cloud/spring-cloud-build#checkstyle-configuration).

I want to implement tab completion for zk node name with following code: ```java @ShellMethod(key = "cd", value = "Change Path") public String cd(@ShellOption(help = "Directory", value = "", valueProvider...

More descriptive error message by including offending group name

Empty input with double quotes("") was not allowed because of filtering empty string in StandardParameterResolver.resolve(). Assuming ShellMethod test(String a, @ShellOption(defaultValue = "") String b) and input 'test "" B'. Expected...

When I use Spring Shell, the ApplicationReadyEvent will never be published and `new SpringApplicationBuilder(Application.class).run(args)` also never returns

I am using Spring Shell to run some long running command. Is there anyway to provide some text input to interrupt long running command? e.g. i'm writing some data to...

Using shell 2.0.0.RELEASE My shell method looks like this ``` @ShellMethod(key = "ctx instance", value = "Gets or sets currently selected instance") public void currentInstance(@ShellOption(value = {""}, valueProvider = MyProvider.class,...

I have a use case where I want a user to be able to submit a YAML fragment to be executed by a remote server. I use Spring Shell `2.0.1.BUILD-SNAPSHOT`...