Add basic Banner to CLI Shell

This commit is contained in:
Dave Syer 2013-12-23 17:49:50 +00:00
parent cccb5d4610
commit cc8aa753da

View File

@ -44,6 +44,8 @@ public class ShellCommand extends AbstractCommand {
final PrintStream sysout = System.out;
final PrintStream syserr = System.err;
printBanner();
System.setIn(console.getInput());
PrintStream out = new PrintStream(new OutputStream() {
@Override
@ -161,6 +163,13 @@ public class ShellCommand extends AbstractCommand {
}
}
private void printBanner() {
String version = ShellCommand.class.getPackage().getImplementationVersion();
version = (version == null ? "" : " (v" + version + ")");
System.out.println("Spring Boot CLI" + version);
System.out.println("Hit TAB to complete. Type 'help' and hit RETURN for help.");
}
public void pushPrompt(String prompt) {
this.prompts.push(this.prompt);
this.prompt = prompt;