springboot 使用consul 读取配置文件(遇到的坑太多,没记录)

最终成功版

  1. pom引入mavn依赖:
        
        
            org.springframework.cloud
            spring-cloud-starter-consul-discovery
            2.1.2.RELEASE
        
        
            org.springframework.cloud
            spring-cloud-starter-consul-config
            2.1.2.RELEASE
        

  2.yml文件:        

spring:
  application:
    name: demo
  cloud:
    consul:
      config:
        data-key: data
        prefix: config
        format: yaml
      host: consul的ip地址
      port: 端口
      discovery:
        prefer-ip-address: true
server:
  port: 8080

 3.启动类添加

@EnableDiscoveryClient 注解,sb2.0以后不需要添加,@EnableAutoConfiguration

4.配置consul,key/value

key:config/demo/data  (demo对应项目名,data对应data-key)

value: 原始sb的yml配置,我的是有缩进的可以读取的,没有缩进没试过。

springboot 使用consul 读取配置文件(遇到的坑太多,没记录)_第1张图片

 

总结一下,看了这么多文章,都是模模糊糊,千篇一律,还是 stackoverflow好使,当然还有源码。

你可能感兴趣的:(springboot)