Change Default Banner Text
March 3, 2019 | Spring boot complete tutorial with example | No Comments
In this post we will learn about spring boot banner. As we know when we run our application we see the default spring banner.
Suppose i want to change this spring boot banner text and want to print my name when i run the spring boot application.
So to change the default banner text we have to follow given steps:
- Create a Text file with name banner.txt inside resource folder of your project.
- There are some online websites where you can write your own custom banner you can follow the below link to generate your custom banner.
- https://devops.datenkollektiv.de/banner.txt/index.html
- Now just simply clean and build your project .
- Now Run your project you will see your custom banner instead of default banner


You may also like:
How to read property values in spring boot application
How to use H2 database in spring boot application
Profiles in Spring boot application
By admin