springroot启动中app.setShowBanner(false);作用
public static void main(String[] args) {
SpringApplication app = new SpringApplication(Main.class, "classpath*:/spring/*.xml");
app.setShowBanner(false);
app.run(args);
}
在springboot启动过程中,其中 app.setShowBanner(false);作用是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SpringRoot程序启动的时候,会输出SpringBoot为自己设计的Banner:
. _
/\ / ' _(_) _
( ( )___ | '_ | '_| | '_ / _` |
\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |___, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.2.6.RELEASE)
那么app.setShowBanner(false);作用就是不输出这个丑丑的banner
可以看作为了更好的区分版本的作用 可以通过banner.txt 修改显示的内容
这里有一篇文章
http://somefuture.iteye.com/b...