SpringBoot2.x个性化启动banner设置和debug日志

3、SpringBoot2.x个性化启动banner设置和debug日志

简介:自定义应用启动的趣味性日志图标和查看调试日志

1、启动获取更多信息 java -jar xxx.jar --debug

2、修改启动的banner信息

1)在类路径下增加一个banner.txt,里面是启动要输出的信息

2)在applicatoin.properties增加banner文件的路径地址 

spring.banner.location=banner.txt

3)官网地址 https://docs.spring.io/spring-boot/docs/2.1.0.BUILD-SNAPSHOT/reference/htmlsingle/#boot-features-banners

示例:

默认Banner:

SpringBoot2.x个性化启动banner设置和debug日志_第1张图片

在 src/main/resources下创建banner.txt

修改内容如下:

SpringBoot2.x个性化启动banner设置和debug日志_第2张图片

在application.properties添加如下内容:

SpringBoot2.x个性化启动banner设置和debug日志_第3张图片

 

转载于:https://www.cnblogs.com/116970u/p/10230475.html

你可能感兴趣的:(SpringBoot2.x个性化启动banner设置和debug日志)