GithubHelp home page GithubHelp logo

disconf-client's Introduction

disconf-client

简洁而强大的spring配置工具

  • 代码量大约只有原作者的1/10, 没有繁琐的二次扫描啥的.
  • 解决了几个bug, 比如debug=true时断线就不重连,莫名其名的断线等.
  • 支持json和 * 通配符配置
  • 配置更简洁, 业务代码无侵入, 只需要关注原生spring @Value注解
  • 配置变更后自动修改@Value注解的字段,和自动调用@Value注解的setter方法
  • 即使不使用disconf也能使用框架的接口主动修改配置
# settings.properties
app.title=someGame
app.tags=["play","war"]
app.user.hobby.lilei=fishing
app.user.hobby.HanMeimei=reading

 <!-- disconf.xml -->
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

    <!-- config center config -->
    <bean id="disConfPropertyConfigurer" class="io.disconf.client.DisConfPropertyConfigurer">
        <constructor-arg index="0" value="myApp"/> <!--  appName -->
        <constructor-arg index="1">
            <!--  所有配置项 -->
            <array>
                <value>settings.properties</value>
                <value>log4j2.xml</value>
            </array>
        </constructor-arg>
    </bean>

</beans>

 <!-- app-test.xml -->
<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="test.spring.base"/>
</beans>

---------------------------------------ConfigTest_.java------------------------------------------------

package test.spring;

import io.disconf.client.DisConfPropertyConfigurer;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import test.spring.base.Configs;

import java.util.Properties;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({"classpath:disconf.xml", "classpath:app-test.xml"})
public class ConfigTest_ {

    @Autowired
    Configs configs;

    @Autowired
    DisConfPropertyConfigurer disConfPropertyConfigurer;

    @Test
    public void test_config() {
        System.out.println("configs = " + configs);

        Properties properties = new Properties();
        properties.put("app.title", "myApp");
        properties.put("app.title", "myApp");
        properties.put("app.user.hobby.NewResetUser", "WriteBug");
        // when use disconf, this method is auto invoke when Config Changed
        // 当使用disconf时,这个方法是自动调用的;  由于第一个参数传的是null, 所以这里是重置
        disConfPropertyConfigurer.changeBeanProperties(null, properties);

        System.out.println("** After Refresh:\nconfigs = " + configs);
    }

}

-------------------------------------Configs.java--------------------------------------------------

package test.spring.base;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

import java.util.Arrays;
import java.util.Map;

@Component
public class Configs {
    @Value("${app.tags:[]}")
    public String[] tags;
    public String title;

    public Map<String,String> userHobby;

    @Value("${app.title}")
    public void setTitle(String title) {
        this.title = title;
    }

    @Value("${app.user.hobby.*}")
    public void setUserHobby(Map<String, String> userHobby) {
        this.userHobby = userHobby;
    }

    @Override
    public String toString() {
        final StringBuilder sb = new StringBuilder("Configs{");
        sb.append("tags=").append(Arrays.toString(tags));
        sb.append(", title='").append(title).append('\'');
        sb.append(", userHobby=").append(userHobby);
        sb.append('}');
        return sb.toString();
    }
}

disconf-client's People

Contributors

houkx avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.