5

我有一个弹簧启动应用程序,我想获得我在领事代理上的属性。

@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>

属性以这种格式存储在 consul 上:Business/SOAPProxy/proxy.endpoint

当应用程序启动时,它似乎找到了 consul,但在尝试 consul @Value("${proxy.endpoint}") 之前它无法获取值,我怎样才能获得 consul 的属性?

4

1 回答 1

8

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

  1. 核心价值
  2. yaml
  3. 文件

我在 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>

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

在此处输入图像描述

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

于 2017-03-09T05:28:09.380 回答