Skip to main content

SpringBoot : Adding Custom Banner in Application

Adding Custom Banner in Spring Boot Application

You can replace the default spring boot banner for your application to give a more meaningful name to it.

Steps to add Custom Banner in application.


  1. Go to the link ASCII art generator and generate an ascii art.
  2. Create a file named banner.txt under resources folder.
  3. That's it, rerun your application and you will be able to see your new banner.

Note :: name of the file should be banner.txt and placed in folder resources

Comments