springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用

springboot的启动图案为:

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第1张图片

更改springboot的启动图案:

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第2张图片

在resources下创建banner.txt 默认是这个文件

制作网站  http://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第3张图片

把图案复制到banner.txt中  AnsiColorBLUE设置字体颜色

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第4张图片

 

配置favicon.ico  复制自己的ico到resources中

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第5张图片

启动后:

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第6张图片

 

引用springboot官网的话说在resource/static 下寻找favicon.ico 没有的话去classpath下找就能配置我们的小图标了

 

yml 文件的使用

创建一个application-dev.yml

已application 开头的的都可以被springboot识别  application-${name}.yml(properties)

yml 文件支持 对象  map  数组 等

格式为k:空格 v

例如:

persion:

      id: 1

      name: xiaoming

list:

   - x

   - y

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第7张图片

yml中配置

springboot 的启动图案配置 和 favicon.ico 小图标和yml 文件使用_第8张图片

你可能感兴趣的:(spring)