I'm using spring shell and it's work fine. but i want to run some built in command for example exit command in a method.
How can i do that?
@Component
public class runCommand implements CommandMarker {
@CliCommand(value = "exit", help = "")
public void exit() {
// run exit built in command to exit
}
}
you can ref this, disabling_specific_commands