`

disconf 实践(一)【原创】

阅读更多
    公司目前的应用基本采用分布式部署,通过F5进行集群管理。分布式应用带来的好处是,随着流量的增加,可以快速扩展应用节点,分摊压力。分布式也会带来一定的挑战,譬如配置文件管理。如果某个配置要修改,那么所有的节点都要进行修改,当面临大规模集群时,很容易改错或改漏。因此,需要一个统一的配置管理中心对配置进行管理,集中修改一个配置文件,所有机器能够自动同步。disconf就是百度开源的配置管理中心。
    以下是参照开源文档与公司的项目进行集成实践。
1. 下载管理端,并安装。
   https://github.com/knightliao/disconf/tree/master/disconf-web
2. 登录管理端,并新建APP,然后上传相关配置文件
  
3. 新建disconf.properties,根据管理端新建的APP修改相关属性,放在classpath下。
enable.remote.conf=true
conf_server_host=http://192.168.3.141:8080/
version=V1.0
app=GTW
env=local
debug=true
ignore=
conf_server_url_retry_times=1
conf_server_url_retry_sleep_seconds=1

4. 增加spring配置(spring-disconf.xml)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:cache="http://www.springframework.org/schema/cache" xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
       http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
       http://www.springframework.org/schema/aop
       http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.0.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
       http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-4.0.xsd">
    
    <!-- 使用disconf必须添加以下配置 -->
	<bean id="disconfMgrBean" class="com.baidu.disconf.client.DisconfMgrBean"
	      destroy-method="destroy">
	    <property name="scanPackage" value="com.baidu"/>
	</bean>
	<bean id="disconfMgrBean2" class="com.baidu.disconf.client.DisconfMgrBeanSecond"
	      init-method="init" destroy-method="destroy">
	</bean>
    
    <!-- 使用托管方式的disconf配置(无代码侵入, 配置更改不会自动reload)-->
	<bean id="configproperties_no_reloadable_disconf"
	      class="com.baidu.disconf.client.addons.properties.ReloadablePropertiesFactoryBean">
	    <property name="locations">
	        <list>
	            <value>redis.properties</value>
	            <value>jdbc.properties</value>
	            <value>config.properties</value>
	        </list>
	    </property>
	</bean>
	
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	    <property name="ignoreResourceNotFound" value="true"/>
	    <property name="ignoreUnresolvablePlaceholders" value="true"/>
	    <property name="propertiesArray">
	        <list>
	            <ref bean="configproperties_no_reloadable_disconf"/>
	        </list>
	    </property>
	</bean>
</beans>

其中 redis.properties, jdbc.properties,config.properties 为管理端上传的三个配置文件。
5.添加依赖包
    <dependency>
	<groupId>com.baidu.disconf</groupId>
	<artifactId>disconf-client</artifactId>
	<version>2.6.36</version>
    </dependency>

至此,已经可以使用properties中的属性。如果要修改属性,只要在管理端修改相应的配置文件即可,相关属性会自动同步到各个应用部署的机器中。
注意:这种做法是最简单的应用,只会同步属性文件到本地,但不会reload到系统中,需要系统重启一下。disconf也可以做到热加载,同时也可以通过annotation的方式进行集成,后续再介绍相关内容。对于大部分应用,这样的集成已经可以,毕竟配置文件不会经常改动。

只要正确运行过一遍配置文件,文件就会被缓存在本地,即使与管理端断开,也不影响系统的正常运行。从集成情况看,应该是下载到disconf/download目录下,然后在运行的时候发布到classpath下。
  • 大小: 38.8 KB
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    disconf-master.zip

    《分布式配置中心Disconf详解与应用实践》 Disconf,全称为Distributed Configuration,是一款开源的分布式配置中心,由百度公司开发并维护。在大型分布式系统中,管理配置是一项复杂的工作,Disconf的出现旨在解决...

    Disconf 分布式配置使用教程

    Disconf 是一款分布式配置管理系统,旨在帮助开发者更方便地管理和维护项目中的配置文件。在本教程中,我们将详细介绍 Disconf 的使用方法和配置项。 1. Disconf 客户端录入/修改/删除项目配置相关内容 Disconf 的...

    disconf-demo

    【标题】"disconf-demo" 是一个基于Spring Boot框架的示例程序,它展示了如何集成和使用disconf(分布式配置中心)这一...通过深入研究和实践这个示例,开发者将能够熟练地运用disconf解决实际项目中的配置管理问题。

    Disconf配置war包

    Disconf(分布式配置中心)是百度开源的一款用于解决分布式系统配置管理问题的工具,它可以集中化管理应用的配置,使得在分布式环境下配置的修改和更新变得更加便捷。在本压缩包中,包含了`disconf-web.war`文件,这...

    disconf使用

    四、Disconf的实践应用 在实际开发中,Disconf常用于数据库连接串、第三方API密钥、系统开关等需要跨多个服务共享的配置。例如,通过Disconf管理数据库连接字符串,当需要更换数据库时,只需要在配置中心进行修改,...

    disconf-web简化可部署版

    "Disconf-web" 是一款专为分布式系统配置管理而设计的开源工具,其主要目标是提供一个统一、便捷的配置管理平台。在官方下载的版本中,通常需要借助Nginx进行动静态资源的分离,以优化服务器性能。然而,对于一些...

    Disconf分布式配置管理平台 v2.6.36.zip

    7. **毕业设计与论文**:Disconf可以作为学习分布式系统、微服务架构或者配置管理领域的实践项目,对于学生进行毕业设计或者撰写相关论文具有很高的参考价值。 8. **案例研究**:在"计算机案例"中,Disconf可以作为...

    apollo和disconf对比

    而Disconf则更倾向于提供一站式的解决方案,包括对多种框架和中间件的支持,更有利于复杂系统的配置管理。两者在性能、稳定性、易用性等方面都有一定的优势,选择哪一个取决于具体项目的实际需求和团队的技术栈。 ...

    disconf-web部署指南_V1.3

    《disconf-web部署指南_V1.3》是针对disconf在Web环境下的部署与配置的一份详尽指导文档。Disconf(分布式配置中心)是一款开源的、轻量级的、适用于Java环境的分布式配置管理工具,它能有效地帮助开发者解决在...

    disconf-web-2.6.33简化版

    1.按照disconf-web.war/sql/readme.md执行SQL脚本创建库表和基础数据。 2.修改war包下的配置文件,具体目录是disconf-web.war\WEB-INF\classes\ jdbc-mysql.properties (数据库配置) redis-config.properties ...

    docker快速构建disconf镜像

    dd676e1ecbee zookeeper:3.3.6 "/docker-entrypoin..." About an hour ago Up About an hour 0.0.0.0:2181-&gt;2181/tcp, 0.0.0.0:2888-&gt;2888/tcp, 0.0.0.0:3888-&gt;3888/tcp dockerdisconfmaster_disconf_zookeeper_1 ...

    分布式配置中心 Disconf 安装包

    分布式配置中心 Disconf 编译好的安装包, 分布式配置中心 Disconf 编译好的安装包,。

    disconf小文档

    disconf,全称是Distributed Configuration Service,是一款开源的分布式配置管理工具,由百度公司推出,旨在解决在分布式环境下配置管理的难题。它提供了一种集中式的、版本化的、动态更新的方式来管理和分发应用的...

    disconf 例子

    Disconf,全称为 Distributed Configuration,是一款由百度开源的分布式配置中心,它能够有效地解决分布式环境中配置管理的难题。本篇文章将深入探讨Disconf的使用,包括如何使用`disconf.properties`文件以及不使用...

    disconf-client-2.6.36.jar

    适用升级disconf + springcloud 高版本

    springboot集成百度disconf

    在SpringBoot的配置类中,创建一个Disconf配置的@Bean,用于初始化Disconf客户端。 4. **启动时加载配置** 在SpringBoot的启动类上添加注解`@EnableDisconfClient`,让SpringBoot在启动时加载Disconf配置。 5. *...

    disconf打包后的war

    如果不想导入eclipse用maven安装,可直接下载就可以用.

    python3通过disconf的api自动进行appname的配置文件下载和配置添加

    百度的disconf确实好用,但是手工添加配置项和配置文件很烦躁,自己利用闲余时间写了该脚本,主要支持对disconf的app自动下载和添加配置,运行之前,请先在桌面上新建一个applist.txt的文本,里面填上待操作的...

    disconf-web-2.6.36 maven项目

    disconf-web项目,可直接部署到tomcat上,不依赖nginx。 修改其中 jdbc-mysql.properties (数据库配置), redis-config.properties (Redis配置),zoo.properties (Zookeeper配置), application.properties (应用...

    disconf-demo:disconf分布式配置demo

    分布式配置管理在现代大型互联网应用中扮演着至关重要的角色,它允许开发者在不修改代码的情况下,...通过`disconf-demo`这个示例,你可以深入学习`disconf`的工作原理和最佳实践,提升你的分布式系统设计和运维能力。

Global site tag (gtag.js) - Google Analytics