Using spring boot will have a default of banner as shown:
650) this.width=650; "src=" Http://s1.51cto.com/wyfs02/M02/89/CD/wKioL1gdd7qTbWtZAAA37YxSdgA043.png "title=" Banner.png "alt=" Wkiol1gdd7qtbwtzaaa37yxsdga043.png "/>
It's not even cool to use your own banner in your own project! It's easy to do in the big Java World:
Just add in your own project:/springboot/src/main/resources/banner.txt, and go to
http://patorjk.com/software/taag-v1/
To create a text of your liking and copy it to the Banner.txt file, restart spring boot to see it.
650) this.width=650; "src=" Http://s5.51cto.com/wyfs02/M00/89/CD/wKioL1gdeGTRaLrWAAA8wYozbmI497.png "title=" Banner.png "alt=" Wkiol1gdegtralrwaaa8wyozbmi497.png "/>
In addition, you can turn off banner, control the banner output to the log, or console.
Springapplication app = new Springapplication (samplecontroller.class); App.setbannermode (Banner.Mode.OFF);
which
Banner.mode is an enumeration that has console,log,off.
This article is from the "dream to think XI" blog, please be sure to keep this source http://qiangmzsx.blog.51cto.com/2052549/1869777
Spring Boot Replacement Banner