繁体   English   中英

使用外部属性覆盖 spring-boot application.properties

[英]Override spring-boot application.properties with external properties

我有一个 spring-boot 应用程序。 我有 3 个属性文件:

  1. spring-boot jar 中的一个属性文件 - myjar.jar称为 application.properties (这是 jar 内的包

  2. jar 外部的属性文件,位于configuration/global.properties下的jar 位置

  3. jar 外部的一个属性文件,位于configuration/java.properties下的jar 位置

问题是,我正在运行以下命令:

java -Dlogging.config=logback.xml -jar "myjar.jar" spring.config.location=classpath:/application.properties,file:./configurations/global.properties,file:./configurations/java.properties

我得到一个例外:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'myApplication': Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'Data.StoresDb.LakeConnectionString' in value "${Data.StoresDb.LakeConnectionString}"
        at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:405)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1422)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:594)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517)
        at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321)
        at org.springframework.beans.fa

myApplication.java 中,我有:

@Value("${Data.StoresDb.LakeConnectionString}")
String dataLakeStoreDb;

在我application.properties没有Data.StoresDb.LakeConnectionString,但有它在我的global.properties,我希望春天试图SER值Data.StoresDb.LakeConnectionString之前解决所有文件

您将 arg/value 作为原始 Java 参数传递:

java -jar "myjar.jar" spring.config.location=...

该参数将出现在主类的String[] args中,但 Spring 环境不会意识到这一点。
您必须在它前面加上--以使参数成为 Spring 环境感知:

java -jar "myjar.jar" --spring.config.location=...

官方文档

默认情况下,SpringApplication 会将任何命令行选项参数(以“--”开头,例如 --server.port=9000)转换为属性并将其添加到 Spring Environment

或者作为替代将其作为系统属性传递:

java -Dspring.config.location=... -jar "myjar.jar" 

作为旁注:注意spring.config.location会覆盖默认位置,而 Spring Boot 2 中引入的spring.config.additional-location会将指定位置添加到默认位置。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM