How to remove Spring Boot Text Banner shown in Console when Application Starts


Spring Boot Banner:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::                (v3.2.3)
Spring Boot Banner

The Spring Banner with the version details is always displayed in the console when you run a Spring Boot application.

If you for some reason do not wish to have it displayed, you can simply add the below property in the application.properties files.

spring.main.banner-mode=off

If you made use of the application.yml file, then add the below line.

spring:
  main:
    banner-mode: off
No Spring Banner Displayed

This is not an AI-generated article but is demonstrated by a human on an M1 Mac running Spring Boot 3.x.

Please support independent contributors like Code2care by donating a coffee.

Buy me a coffee!

Buy Code2care a Coffee!

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org

Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap