在什么情况下是app.setBannerMode(Banner.Mode.OFF);忽略了吗?

时间:2019-02-13 04:09:49

标签: spring-boot

我正在应用程序中致电app.setBannerMode(Banner.Mode.OFF);,但仍然收到标语。

我的代码:

    SpringApplication app = new SpringApplication(MyApp.class);
    app.setBannerMode(Banner.Mode.OFF);
    app.setAdditionalProfiles("foobar");

输出:

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

预期输出:

(nothing)

这可能是什么原因造成的!!

0 个答案:

没有答案