超个性修改SpringBoot项目的启动banner的方法
如果我们使用过SpringBoot,那么就会对下面的图案不陌生。Springboot启动的同时会打印下面的图案,并带有版本号。
查看SpringBoot官方文档可以找到关于banner的描述
Thebannerthatisprintedonstartupcanbechangedbyaddingabanner.txtfiletoyourclasspathorbysettingthespring.banner.locationpropertytothelocationofsuchafile.IfthefilehasanencodingotherthanUTF-8,youcansetspring.banner.charset.Inadditiontoatextfile,youcanalsoaddabanner.gif,banner.jpg,orbanner.pngimagefiletoyourclasspathorsetthespring.banner.image.locationproperty.ImagesareconvertedintoanASCIIartrepresentationandprintedaboveanytextbanner.
通过有道翻译
可以通过向类路径中添加一个banner.txt文件或设置spring.banner来更改在console上打印的banner。属性指向此类文件的位置。如果文件的编码不是UTF-8,那么可以设置spring.banner.charset。除了文本文件,还可以添加横幅。将gif、banner.jpg或banner.png图像文件保存到类路径或设置spring.banner.image。位置属性。图像被转换成ASCII艺术形式,并打印在任何文本横幅上面。
在IDEA中,在SpringBoot配置文件中输入spring.banner会出现下面提示,正对应上面翻译的内容。
1、自定义banner
我们在类路径下新建banner.txt文件,绘制下面图案,下面地址就是绘制字符图案。
http://patorjk.com/software/taag/
原代码
publicstaticvoidmain(String[]args){ SpringApplication.run(SpringbootShiroApplication.class,args); }
修改后的代码
publicstaticvoidmain(String[]args){ SpringApplicationapp=newSpringApplication(SpringbootShiroApplication.class); app.setBannerMode(Banner.Mode.OFF); app.run(args); }
这样,SpringBoot启动时就不会打印图案了。
当然,还有其他的方式改变以及关闭启动的图案,如果大家有不一样的方式,可以在下方评论来说明。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。