There are n numbers of approaches to turn the banner off.
application.properties:
spring.main.banner-mode=off
application.yaml:
spring: main: banner-mode: off
using code:
SpringApplication app = new SpringApplication(MyApplication.class); app.setBannerMode(Banner.Mode.OFF); app.run(args);
additionally you can follow below blog post: