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

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

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!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!