Package com.taobao.tddl.jdbc.group.config

Examples of com.taobao.tddl.jdbc.group.config.ConfigManager$MyDataSourceFetcher


      };
      List<DataSourceWrapper> dss = ConfigManager.buildDataSourceWrapper(dsKeyAndWeightCommaArray, wrapper);
      init(dss);
    } else {
      checkProperties();
      configManager = new ConfigManager(this);
      configManager.init();
    }
  }
View Full Code Here


  public void init(DataSourceWrapper... dataSourceWrappers) {
    init(Arrays.asList(dataSourceWrappers));
  }

  public void init(List<DataSourceWrapper> dataSourceWrappers) {
    configManager = new ConfigManager(this);
    configManager.init(dataSourceWrappers);
  }
View Full Code Here

TOP

Related Classes of com.taobao.tddl.jdbc.group.config.ConfigManager$MyDataSourceFetcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.