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)application.properties
spring.main.banner-mode=off
2)application.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-MODE =关闭
请参阅文档以了解外部化配置。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)