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);
}
}