Sunday 23 July 2017

how to remove spring boot banner


  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.5.4.RELEASE)

To remove this:
1)

spring.main.banner-mode=off

Add above line in 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

No comments:

Post a Comment