spring cloud Brixton.RELEASE配置服务器

时间:2017-03-05 03:58:38

标签: spring spring-boot

在使用Angel.SR3之前,我可以启动发现和配置服务器,我可以在http://localhost:8761中找到配置服务器。 迁移到Brixton Release后,相同的配置服务器属性不再起作用。 配置服务器application.yml:

server:
  port: 8099

spring:
  cloud:
    config:
      server:
        native:
          search-locations: classpath:/config 

bootstrap.yml

spring:
  application:
    name: config 

eureka:
  instance:
    non-secure-port: ${server.port:8099} 
    metadata-map:
      instanceId: ${spring.application.name}:${random.value} 
  client:
    service-url:
      defaultZone: http://${eureka.host:localhost}:${eureka.port:8761}/eureka/ 

发现服务器application.yml

server:
  port: 8761

eureka:
  instance:
    hostname: localhost
  client:
    register-with-eureka: false
    fetch-registry: false

任何人都有一个可行的Brixton发布演示?

1 个答案:

答案 0 :(得分:1)

Brixton没有,但如果有帮助我Camden https://github.com/khauser/microservices4vaadin

从这里我会说你应该将尤里卡部分从bootstrap.yml移到application.yml,但我不知道这是否会有所帮助。