spring-boot-如何在环境或系统属性中指定application.properties的路径?

时间:2019-04-23 05:05:54

标签: spring spring-boot

如果我想运行spring boot应用程序,并且想在差异路径中使用差异application.properties(而不是使用配置文件)

如何为application.properties指定路径?

3 个答案:

答案 0 :(得分:1)

如果要在差异路径中使用差异application.properties,请使用此命令启动jar文件

nohup java -jar project.jar --spring.config.location=file://{file-path}/application.properties 

答案 1 :(得分:0)

答案 2 :(得分:0)

@PropertySource批注用于将属性文件提供到环境中,并与@Configuration类一起使用。

@PropertySource({“” classpath:config.properties“})