Merge pull request #1363 from Stummi/master
* pull1363: Support programmatic banners via setterpull/1385/head
commit
d0231d0dbe
@ -0,0 +1,65 @@
|
||||
/*
|
||||
* Copyright 2012-2013 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot;
|
||||
|
||||
import java.io.PrintStream;
|
||||
|
||||
import org.springframework.boot.ansi.AnsiOutput;
|
||||
import org.springframework.core.env.Environment;
|
||||
|
||||
import static org.springframework.boot.ansi.AnsiElement.DEFAULT;
|
||||
import static org.springframework.boot.ansi.AnsiElement.FAINT;
|
||||
import static org.springframework.boot.ansi.AnsiElement.GREEN;
|
||||
|
||||
/**
|
||||
* Default Banner implementation which writes the 'Spring' banner.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
class SpringBootBanner implements Banner {
|
||||
|
||||
private static final String[] BANNER = { "",
|
||||
" . ____ _ __ _ _",
|
||||
" /\\\\ / ___'_ __ _ _(_)_ __ __ _ \\ \\ \\ \\",
|
||||
"( ( )\\___ | '_ | '_| | '_ \\/ _` | \\ \\ \\ \\",
|
||||
" \\\\/ ___)| |_)| | | | | || (_| | ) ) ) )",
|
||||
" ' |____| .__|_| |_|_| |_\\__, | / / / /",
|
||||
" =========|_|==============|___/=/_/_/_/" };
|
||||
|
||||
private static final String SPRING_BOOT = " :: Spring Boot :: ";
|
||||
|
||||
private static final int STRAP_LINE_SIZE = 42;
|
||||
|
||||
@Override
|
||||
public void write(Environment environment, PrintStream printStream) {
|
||||
for (String line : BANNER) {
|
||||
printStream.println(line);
|
||||
}
|
||||
String version = Banner.class.getPackage().getImplementationVersion();
|
||||
version = (version == null ? "" : " (v" + version + ")");
|
||||
String padding = "";
|
||||
while (padding.length() < STRAP_LINE_SIZE
|
||||
- (version.length() + SPRING_BOOT.length())) {
|
||||
padding += " ";
|
||||
}
|
||||
|
||||
printStream.println(AnsiOutput.toString(GREEN, SPRING_BOOT, DEFAULT, padding,
|
||||
FAINT, version));
|
||||
printStream.println();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue