如何:使用外部配置文件构建Gradle Spring Boot应用

时间:2018-08-30 13:09:00

标签: spring-boot gradle

Maven方法非常简单:

mvn clean install -Dspring.config.location=/path/config.properties

如何使用Gradle做到这一点?

1 个答案:

答案 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"