clean code,remove repeat code
This commit is contained in:
parent
ab21d983af
commit
acc4e337d2
@ -49,21 +49,14 @@ public class ConfigFactory {
|
||||
/**
|
||||
* Create Config
|
||||
*
|
||||
* @param ServerAddr serverlist
|
||||
* @param serverAddr serverlist
|
||||
* @return Config
|
||||
* @throws NacosException Exception
|
||||
*/
|
||||
public static ConfigService createConfigService(String serverAddr) throws NacosException {
|
||||
Properties properties = new Properties();
|
||||
properties.put(PropertyKeyConst.SERVER_ADDR, serverAddr);
|
||||
try {
|
||||
Class<?> driverImplClass = Class.forName("com.alibaba.nacos.client.config.NacosConfigService");
|
||||
Constructor constructor = driverImplClass.getConstructor(Properties.class);
|
||||
ConfigService vendorImpl = (ConfigService)constructor.newInstance(properties);
|
||||
return vendorImpl;
|
||||
} catch (Throwable e) {
|
||||
throw new NacosException(-400, e.getMessage());
|
||||
}
|
||||
return createConfigService(properties);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ package com.alibaba.nacos.api.config.listener;
|
||||
import java.util.concurrent.Executor;
|
||||
|
||||
/**
|
||||
* Listner Adapter,use default notify thread
|
||||
* Listener Adapter,use default notify thread
|
||||
*
|
||||
* @author water.lyl
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user