如果我想运行spring boot应用程序,并且想在差异路径中使用差异application.properties(而不是使用配置文件)
如何为application.properties
指定路径?
答案 0 :(得分:1)
如果要在差异路径中使用差异application.properties,请使用此命令启动jar文件
nohup java -jar project.jar --spring.config.location=file://{file-path}/application.properties
答案 1 :(得分:0)
环境变量SPRING_CONFIG_LOCATION
也可以使用。
答案 2 :(得分:0)
@PropertySource批注用于将属性文件提供到环境中,并与@Configuration类一起使用。
@PropertySource({“” classpath:config.properties“})