mirror of
https://gitee.com/BDWare/router-backend
synced 2025-01-25 01:04:05 +00:00
feat: update NodeCenterServer
rename NodeCenterServer.parseConf to NodeCenterServer.configServer
This commit is contained in:
parent
eff33648e1
commit
2ee97ee704
@ -64,7 +64,7 @@ public class NodeCenterServer {
|
||||
Level.OFF);
|
||||
}
|
||||
|
||||
public static void parseConf(CMDConf cmdConf) {
|
||||
public static void configServer(CMDConf cmdConf) {
|
||||
LocalLHSProxy.port = cmdConf.doipPort;
|
||||
LocalLHSProxy.enabled = true;
|
||||
if (cmdConf.disableDoRepo) {
|
||||
@ -88,7 +88,6 @@ public class NodeCenterServer {
|
||||
}
|
||||
if (cmdConf.debug != null) {
|
||||
if (!cmdConf.debug.isEmpty()) {
|
||||
|
||||
try {
|
||||
String[] classes = cmdConf.debug.split(",");
|
||||
for (String clz : classes) {
|
||||
@ -123,9 +122,9 @@ public class NodeCenterServer {
|
||||
if (!confFile.exists() && confTemplate.exists()) {
|
||||
FileUtils.copyFile(confTemplate, confFile);
|
||||
}
|
||||
CMDConf cmf = CMDConf.parseConf(CONFIG_PATH).parseArgs(args);
|
||||
CMDConf cmf = CMDConf.parseFile(CONFIG_PATH).parseArgs(args);
|
||||
|
||||
parseConf(cmf);
|
||||
configServer(cmf);
|
||||
|
||||
if (LocalLHSProxy.enabled) {
|
||||
threadPool = Executors.newSingleThreadExecutor();
|
||||
|
Loading…
Reference in New Issue
Block a user