• 授权协议:Apache
  • 开发厂商:-
  • 软件语言:Java
  • 更新日期:2015-04-16
Config Toolkit

Config Toolkit 是大型集群和分布式应用配置工具包。Config toolkit 用于简化从本地配置文件到 zookeeper 的迁移。在大型集群和分布式应用中,配置不宜分散到集群结点中,应该集中管理.

Config Toolkit 分布配置工具包 项目简介

Config Toolkit 是大型集群和分布式应用配置工具包。Config toolkit 用于简化从本地配置文件到 zookeeper 的迁移。在大型集群和分布式应用中,配置不宜分散到集群结点中,应该集中管理.依赖JAVA 7+TOMCAT 7+ for ConfigWeb模块Config Toolkit - 封装应用属性配置的获取及更新ConfigWeb - 提供web界面维护属性配置,提供配置导入导出功能特性集中管理集群配置实现配置热更新多配置源支持,内置支持zookeeper、本地文件、http协议Spring集成本地配置覆盖配置管理web界面版本控制,支持灰度发布支持为配置项添加注释Quick Startload properties from zookeeperZookeeperConfigProfile configProfile = new ZookeeperConfigProfile("zoo.host1:8181", "/projectx/modulex", "1.0.0");
    GeneralConfigGroup propertyGroup1 = new ZookeeperConfigGroup(configProfile, "property-group1");load properties from classpath fileFileConfigProfile configProfile = new FileConfigProfile("UTF8", "properties");
    ConfigGroup configGroup = new FileConfigGroup(configProfile, "classpath:property-group1.properties");load xml properties from classpath fileFileConfigProfile configProfile = new FileConfigProfile("UTF8", "xml");
    ConfigGroup configGroup = new FileConfigGroup(configProfile, "classpath:property-group1.xml");load properties from fileFileConfigProfile configProfile = new FileConfigProfile("UTF8", "properties");
    ConfigGroup configGroup = new FileConfigGroup(configProfile, "file:/Users/yuxuanwang/Work/git/config-toolkit/config-toolkit-demo/src/main/resources/property-group1.properties");load properties from httpFileConfigProfile configProfile = new FileConfigProfile("UTF8", "properties");
    ConfigGroup configGroup = new FileConfigGroup(configProfile, "http://crnlmchina.github.io/config-group.properties");

Config Toolkit 分布配置工具包 评论内容