前言
我们注意到springboot项目启动时,控制台会打印自带的banner,如何改成自己秀一把才符合程序员的个性。
方法
只需要在springboot项目的resources文件夹下面创建一个banner.txt文件,springboot启动的时候会去加载这个文件,项目结构:
image.png
生成字符图案的工具网站
http://www.network-science.de/ascii/
生成的
image.png
还是可配置
banner.txt配置
${AnsiColor.BRIGHT_RED}
:设置控制台中输出内容的颜色
${application.version}
:用来获取MANIFEST.MF
文件中的版本号
${application.formatted-version}
:格式化后的${application.version}
版本信息
${spring-boot.version}
:Spring Boot的版本号
${spring-boot.formatted-version}
:格式化后的${spring-boot.version}
版本信息
spring对banner的配置,来自springboot参考手册,Common application properties:https://docs.spring.io/spring-boot/docs/2.1.0.RELEASE/reference/htmlsingle/#common-application-properties
# BANNER
spring.banner.charset=UTF-8 # Banner file encoding.
spring.banner.location=classpath:banner.txt # Banner text resource location.
spring.banner.image.location=classpath:banner.gif # Banner image file location (jpg or png can also be used).
spring.banner.image.width=76 # Width of the banner image in chars.
spring.banner.image.height= # Height of the banner image in chars (default based on image height).
spring.banner.image.margin=2 # Left hand image margin in chars.
spring.banner.image.invert=false # Whether images should be inverted for dark terminal themes.
网友评论