We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When there are a lot of option parameters, it is more convenient to use a bean to receive them.
For example, the following usage:
@Command(command = "foo") public void foo(@OptionBody FooOption fooOption) { //... } public static class FooOption{ @Option(longNames = "verbose",shortNames = 'v') private boolean verbose; @Option(longNames = "other",shortNames = 'o') private String other; }
The text was updated successfully, but these errors were encountered:
Would be nice but it'd be good to see if framework implements similar ideas. spring-projects/spring-framework#23618
Sorry, something went wrong.
As similar type of request in framework were declined we're also declining this as don't want to come up with just a shell feature.
No branches or pull requests
When there are a lot of option parameters, it is more convenient to use a bean to receive them.
For example, the following usage:
The text was updated successfully, but these errors were encountered: