默认打印 classpath下 banner.txt,可以修改文件位置和编码。 也可以是图片,图片的话会转为 ASCII art

一些在线的 ASCII art 工具:

gradle 启动多个 profile

# build.gradle
bootRun {
    String activeProfile =  System.properties['spring.profiles.active']
    String confLoc = System.properties['spring.config.location']
    systemProperty "spring.profiles.active", activeProfile
    systemProperty "spring.config.location", "file:$confLoc"
}

./gradlew -Dspring.profiles.active=a,b bootRun

# idea intellij 的 Run/Debug 中编辑窗口如下配置:
Tasks:              bootRun
VM options:         -Dspring.profiles.active=a,b
Script parameters: