69.2. 外部化SpringApplication配置
spring.main.web-environment=false
spring.main.banner-mode=offnew SpringApplicationBuilder()
.bannerMode(Banner.Mode.OFF)
.sources(demo.MyApp.class)
.run(args);spring.main.sources=com.acme.Config,com.acme.ExtraConfig
spring.main.banner-mode=consoleLast updated
Was this helpful?