spring boot在启动的时候,给我们留了一个彩蛋
定制banner
在spring boot启动的时候会有一个默认的启动图案
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.4.0.RELEASE)
如果我们想定制一个启动图案的话,那么需要:
1.在/src/main/resources下新建一个banner.txt文件即可
2.通过http://atorjk.com/software/taag网站生成字符,例如敲入:monitor,网站会生成monitor对应的字符文本
3.将生成的文本放入banner.txt中重启服务,就会在log中看到我们定制的banner了
关闭banner
当然,既然可以定制banner那么我们也可以关闭banner,很简单,在main里面,设置showBanner(false)即可,例如:
new SpringApplicationBuilder(Application.class)
.showBanner(false);