Spring Boot Banner设置

Spring Boot Banner设置

1.spring boot默认banner

在这里插入图片描述

2.如果需要更换banner,需要在resource下添加banner.txt文件

在这里插入图片描述

在线生成banner网站https://www.bootschool.net/ascii
在这里插入图片描述例如:搜索佛祖
在这里插入图片描述

3.将banner.txt放在resource文件夹下,启动项目,更换成功

在这里插入图片描述

4.如果想关闭启动的banner,需要在启动类中进行设置

@SpringBootApplication
public class HttpdemoApplication {

    public static void main(String[] args) {
        SpringApplication springApplication = new SpringApplication(HttpdemoApplication.class);

        //将设置的banner关闭  CONSOLE在控制界面显示 OFF关闭banner
        springApplication.setBannerMode(Banner.Mode.OFF);

        springApplication.run(args);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值