当前位置: 代码迷 >> 综合 >> Spring Boot ——banner 的修改与停用
  详细解决方案

Spring Boot ——banner 的修改与停用

热度:58   发布时间:2023-10-08 20:14:09.0

1.在src/main/resources 下新建banner.txt

Spring Boot ——banner 的修改与停用

2.通过 http://patorjk.com/software/taag 选择自己喜欢文字

Spring Boot ——banner 的修改与停用

3.复制网站中的结果,粘贴到新建的txt中

4.启动SpringBoot

Spring Boot ——banner 的修改与停用


停用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
  相关解决方案