如何在标准配置中禁用弹簧靴徽标?

2022-08-31 10:22:27

有没有办法禁用可爱但非常明显的ASCII春季靴子徽标:

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

...每次运行春季启动应用程序时都转储到 STDOUT 中?

我在 logback.xml中将所有日志记录切换为 ERROR,但这没有任何作用:

<root level="ERROR">
    <appender-ref ref="STDOUT" />
</root>

编辑:它在文档中不称为“徽标”。搜索友好型术语是“横幅”。


答案 1

http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-banner

new SpringApplicationBuilder()
    .showBanner(false)
    .sources(Parent.class)
    .child(Application.class)
    .run(args);

编辑在较新版本的spring boot(当前是1.3.3)中,这样做的方法是:

1)应用.属性

spring.main.banner-mode=off

2) 应用.yml

spring:
    main:
        banner-mode: "off"

3)主要方法

public static void main(String[] args) {
    SpringApplication app = new SpringApplication(MySpringConfiguration.class);
    app.setBannerMode(Banner.Mode.OFF);
    app.run(args);
}

文档

编辑:

若要使用 和环境变量更改此设置,请使用带有下划线而不是点的属性。尝试:

SPRING_MAIN_BANNER模式=关闭

有关外部化配置,请参阅文档


答案 2

另一种选择是在横幅中添加自定义横幅.txt文件到类路径,该类路径将更改为自定义横幅。

  1. 在类路径中创建文件横幅.txt(即:src/main/resources))
  2. 编辑自定义横幅
  3. 运行应用程序

推荐