Is there a way to disable the lovely but very visible ASCII Spring boot logo :
. ____ _ __ _ _ /\\\\ / ___\'_ __ _ _(_)_ __ __ _ \\ \\
This has changed slightly in Spring Boot 1.3. The property is now:
spring.main.banner_mode=off
In code, it is now:
springApplication.setBannerMode(Banner.Mode.OFF);
or using the builder:
new SpringApplicationBuilder() .bannerMode(Banner.Mode.OFF)