如果我想运行spring Boot 应用程序,并且想application.properties在difference path中使用difference www.example.com(而不是使用profile)如何指定application.properties的路径?
application.properties
rlcwz9us1#
如果要application.properties在difference path中使用difference www.example.com,请使用此命令启动jar文件
nohup java -jar project.jar --spring.config.location=file://{file-path}/application.properties
ecfsfe2w2#
也可以使用环境变量SPRING_CONFIG_LOCATION。https://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html
SPRING_CONFIG_LOCATION
f0brbegy3#
@PropertySource注解用于向环境提供属性文件,它与@Configuration类一起使用。@属性来源({“类别路径:config.properties“})
9jyewag04#
在主类上面使用以下代码:
@PropertySource(value = {"file:///${HOMEDIR}/application.properties"})
4条答案
按热度按时间rlcwz9us1#
如果要application.properties在difference path中使用difference www.example.com,请使用此命令启动jar文件
ecfsfe2w2#
也可以使用环境变量
SPRING_CONFIG_LOCATION
。https://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html
f0brbegy3#
@PropertySource注解用于向环境提供属性文件,它与@Configuration类一起使用。
@属性来源({“类别路径:config.properties“})
9jyewag04#
在主类上面使用以下代码: