我在 application.yaml 文件中有以下部分,我正在尝试读取外部属性文件:
spring:
config:
name: my-config
location: ./config/
pom.xml 看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>myservice</groupId>
<artifactId>my-service</artifactId>
<version>1.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>org.everit.json</groupId>
<artifactId>org.everit.json.schema</artifactId>
<version>1.3.0</version>
</dependency>
</dependencies>
<properties>
<java.version>1.10</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
应用程序.java:
@SpringBootApplication
@EnableAutoConfiguration
@ComponentScan
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
我尝试使用配置的配置类:
@Component
@ConfigurationProperties(prefix = "my-config-prefix")
@RefreshScope
public class MyConfig {
...
当我尝试运行微服务时,它不会映射外部配置 my-config.yml 文件中的任何配置元素。
如果我将 my-config.yml 的全部内容复制并粘贴到 application.yml 文件中,它将按预期工作,映射 MyConfig 类中的所有元素!
Spring boot 似乎拾取了 application.yml 文件下的所有元素,例如,如果我更改 server.port 属性,我可以在重新启动时看到更改,但是看起来它没有拾取“spring”元素下的任何属性。
我试图在命令行上提供该属性并且它按预期工作但是我希望在 yml 文件中使用此属性:
--spring.config.location=file:///Users/home/my-config.yml
另外,我尝试从 application.yml 文件中指定完整位置(如上),但它不起作用。