3
SpringBoot应用系列文章

随着互联网的兴起,提升系统性能的方式,渐渐从垂直伸缩的方式变为水平伸缩。集群中不可避免地会有配置,本地配置就不可取了,一旦有改动就得一台台机器去改动,非常费劲。有个集中配置中心还是非常有必要的,一旦有配置改动,自动下发配置到集群的各个机器中。其中的实现方式有许多,比如通过mq触发变更,比如通过rpc方式触发。zookeeper就属于后者,经常用来做集群选举,服务发现,配置中心。本文主要介绍了如何在SpringBoot中集成和使用zookeeper作为配置中心。

准备zk集群

可以使用standalone模式,或者单机+docker构建集群

创建工程

访问start.spring.io
图片描述

配置application.properties

server.port=8080

配置bootstrap.yml

spring:
  application:
    name: demoapp
  cloud:
    zookeeper:
        enabled: true
        connectString: 192.168.99.100:2181,192.168.99.100:2182,192.168.99.100:2183
    config:
      # TODO: refactor spring-cloud-config to use refresh, etc.. with out config client
      enabled: false

创建zk属性

zkCli.sh
create /config ""
create /config/demoapp ""
create /config/demoapp/msg helloworld
quit

使用

@Value("${msg:defaultMsg}")
String msg

  • 总是连接到localhost:2181(需要把spring cloud的配置迁移到bootstrap.yml)
  • zk变化了没有更新(有待下一个版本完善)

解决zk自动更新

可以采用archaius-zookeeper来实现zk配置的自动更新,不过前提是不支持使用@Value注解来获取变量。不过这种方式对我来说是OK的,因为随处@Value变量使得变量随处飞,不好管理。

/**
 * https://github.com/Netflix/archaius/wiki/ZooKeeper-Dynamic-Configuration
 */
@Component
public class ArchaiusZkConfig {

    @Autowired
    CuratorFramework client;

    @Value("${spring.application.name}")
    String appName;

    @PostConstruct
    public void installZkConfig() throws Exception {
        String zkConfigRootPath = "/config/"+appName;
        ZooKeeperConfigurationSource zkConfigSource = new ZooKeeperConfigurationSource(client, zkConfigRootPath);
        zkConfigSource.start();
        DynamicWatchedConfiguration zkDynamicConfig = new DynamicWatchedConfiguration(zkConfigSource);
        ConfigurationManager.install(zkDynamicConfig);
    }

    public String getDynamicUpdate(){
        String myProperty = DynamicPropertyFactory.getInstance()
                .getStringProperty("msg", "<none>")
                .get();
        return myProperty;
    }
}

鸣谢


codecraft
11.9k 声望2k 粉丝

当一个代码的工匠回首往事时,不因虚度年华而悔恨,也不因碌碌无为而羞愧,这样,当他老的时候,可以很自豪告诉世人,我曾经将代码注入生命去打造互联网的浪潮之巅,那是个很疯狂的时代,我在一波波的浪潮上留下...