我有一个Spring Boot应用程序,我想获得领事代理上的属性。

@EnableDiscoveryClient
@SpringBootApplication(scanBasePackages={"com.commons"})
public class MainAppProxy   implements CommandLineRunner {
    @Value("${proxy.endpoint}")
    private String endpointAddress;

我的application.properties在src/main/resources下
spring.application.name=SOAPProxy
spring.cloud.consul.host=http://10.0.1.241
spring.cloud.consul.port=8500
spring.cloud.config.discovery.enabled=false

在pom.xml中,我具有以下配置(简短版本)
            <artifactId>spring-cloud-dependencies</artifactId>
            <version>Camden.SR5</version>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-config</artifactId>

这些属性以以下格式存储在领事上:
业务/SOAPProxy/proxy.endpoint

当应用程序启动时,似乎可以找到领事,但无法在尝试领事@Value(“$ {proxy.endpoint}”)之前获取值。
如何获得领事的属性(property)?

最佳答案

您可以使用三种方式从领事加载配置

  • 键/值
  • yaml
  • 文件

  • 我在yaml中用来加载配置。

    这是我的bootstrap.yml文件(您也可以使用.property文件)
    spring:
      application:
        name: SOAPProxy
    
    ---
    
    spring:
      profiles: default
      cloud:
        consul:
          config:
            data-key: data
            prefix: config
            format: yaml
          host: localhost
          port: 8500
          discovery:
            prefer-ip-address: true
    

    我的启动应用程序注释如下
    @EnableDiscoveryClient
    @EnableAutoConfiguration
    @SpringBootApplication
    public class SpringBootConsulApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(SpringBootConsulApplication.class, args);
        }
    }
    

    Maven的依赖关系像这样添加
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-consul-config</artifactId>
    </dependency>
    
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-consul-discovery</artifactId>
    </dependency>
    

    这是领事代理 key /值的配置

    Spring Boot从领事服务器获取属性-LMLPHP

    现在启动时,所有配置加载到应用程序

    10-08 01:52