Examples of HelpExample


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

  }

  @Override
  public Collection<HelpExample> getExamples() {
    List<HelpExample> examples = new ArrayList<HelpExample>();
    examples.add(new HelpExample("To list all the capabilities of the service",
        "spring init --list"));
    examples.add(new HelpExample("To creates a default project", "spring init"));
    examples.add(new HelpExample("To create a web my-app.zip",
        "spring init -d=web my-app.zip"));
    examples.add(new HelpExample("To create a web/data-jpa gradle project unpacked",
        "spring init -d=web,jpa --build=gradle my-dir/"));
    return examples;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.