consul服务中心 做配置中心(实现动态刷新配置)

1.pom 依赖(spring版本:2.1.3):

<dependency>
  			<groupId>org.springframework.cloud</groupId>
    		<artifactId>spring-cloud-starter-consul-all</artifactId>
		</dependency>

2.bootstrap.yml 配置
consul: 服务连接配置
consul.config :启动配置中心
config.fomat:表示格式(YAML ,PROPERTIES, KEY-VALUE, FILE)
config.watch 开启配置实时刷新的标识

spring:
  profiles:
    include:
    - application.yml
    - application_dev.yml
  application: 
    name: ercloud-config
  cloud:
    consul:
      host: 127.0.0.1
      port: 8500
      config: 
        enabled: true
        format: KEY_VALUE 
        data-key: data
        prefix: config
        watch: 
          enabled: true

3 consul 值创建:
框中代表的key   下面的是value (其他格式百度)
4.程序处理:
当前版本 试了一下 不实现ApplicationListener 接口,spring加载的bean系统不能重载,也可通过spring其他的方式,调用的时候重新加载一下bean(例如:@Autowired).方法很多。

@Data
@Component
@RefreshScope
public class SystemConstants  implements InitializingBean,ApplicationListener<RefreshEvent>  {
```}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值