Is there a way to disable the lovely but very visible ASCII Spring boot logo :
. ____ _ __ _ _
/\\\\ / ___\'_ __ _ _(_)_ __ __ _ \\ \\
You can set spring.main.show_banner=false
in your application.properties
as described in http://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html.
To remove this:
1) spring.main.banner-mode=off
Add above line in the file
application.properties
OR
2) USE this in Main java class
setBannerMode(Banner.Mode.OFF);
OR
3) in-app*.yml file
spring:
main :
banner-mode=off
User This Link for More Details
http://mytechnologythought.blogspot.com/2017/07/how-to-remove-spring-boot-banner.html