Spring Boot ——banner 的修改與停用
阿新 • • 發佈:2019-02-02
修改banner
1.在src/main/resources 下新建banner.txt
3.複製網站中的結果,貼上到新建的txt中
4.啟動SpringBoot
停用banner的三種方法
1. main 裡的內容修改為:
SpringApplication app
= new SpringApplication(xxxxxx.class);
app.setShowBanner(false);
app.run(args);
2. 使用fluent API 修改為:
new SpringApplicationBuilder(xxxxxx.class)
.showBanner(false )
.run(args);
3. 在 application.yml 或 application.properties檔案中配置
在.yml
中配置如下:
spring:
main:
banner-mode: "off"
在.properties
檔案中配置如下
spring.main.banner-mode = off