美文网首页
第五章:Springboot2自定义banner

第五章:Springboot2自定义banner

作者: 菜出意料 | 来源:发表于2019-03-12 15:46 被阅读0次

本章目标

自定义banner

构建项目

参考第一章创建最基本的web项目

官方提供的application.yml的banner配置信息

# 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.

1.从配置代码中可以看到,会加载classpath下的banner.txt,因此可以在src/main/resources目录下创建banner.txt
2.在线生成banner
3.也可以使用.gif/.jpg/.png格式的图片定义banner

图1.png
运行效果.png
end

相关文章

网友评论

      本文标题:第五章:Springboot2自定义banner

      本文链接:https://www.haomeiwen.com/subject/yunrpqtx.html