Package org.springframework.boot.cli.command

Examples of org.springframework.boot.cli.command.CommandRunner


   */
  protected void doMain(String[] args) {
    System.setProperty("java.awt.headless", Boolean.toString(true));
    LogbackInitializer.initialize();

    CommandRunner runner = new CommandRunner(getMainCommandName());
    runner.addCommand(new HelpCommand(runner));

    for (Command command : commands) {
      runner.addCommand(command);
    }
    runner.setOptionCommands(HelpCommand.class, VersionCommand.class);

    int exitCode = runner.runAndHandleErrors(args);
    handleRunnerExitCode(runner, exitCode);
  }
View Full Code Here


  public static void main(String... args) {
    System.setProperty("java.awt.headless", Boolean.toString(true));
    LogbackInitializer.initialize();

    CommandRunner runner = new CommandRunner("spring");
    runner.addCommand(new HelpCommand(runner));
    addServiceLoaderCommands(runner);
    runner.addCommand(new ShellCommand());
    runner.addCommand(new HintCommand(runner));
    runner.setOptionCommands(HelpCommand.class, VersionCommand.class);
    runner.setHiddenCommands(HintCommand.class);

    int exitCode = runner.runAndHandleErrors(args);
    if (exitCode != 0) {
      // If successful, leave it to run in case it's a server app
      System.exit(exitCode);
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.cli.command.CommandRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.