Maven方法非常简单:
mvn clean install -Dspring.config.location=/path/config.properties
如何使用Gradle做到这一点?
答案 0 :(得分:1)
您应该指定一个任务,并在build.gradle文件中添加jvmArgs以运行spring boot应用程序:
bootRun {
jvmArgs = ["-Dspring.config.location=/prop.properties"]
}
或在命令行中运行:
gradle clean build bootRun -Drun.jvmArgs="-Dloader.config.location=/path/to/prop/file"