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);作用是什么?


慕侠2389804
浏览 798回答 2
2回答

一只名叫tom的猫

SpringRoot程序启动的时候,会输出SpringBoot为自己设计的Banner:. _ /\ / ' _(_) _ ( ( )___ | '_ | '_| | '_ / _` | \/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |___, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v1.2.6.RELEASE)那么app.setShowBanner(false);作用就是不输出这个丑丑的banner
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java