添加流IP单独配置

This commit is contained in:
64850858
2021-06-08 10:37:29 +08:00
parent c826081253
commit 57b562d622
9 changed files with 58 additions and 121 deletions

View File

@@ -24,7 +24,6 @@ import org.slf4j.LoggerFactory;
*/
public class AckRequestProcessor extends SIPRequestAbstractProcessor {
private Logger logger = LoggerFactory.getLogger(AckRequestProcessor.class);
private IRedisCatchStorage redisCatchStorage;

View File

@@ -20,10 +20,10 @@ public class NumericUtil {
public static boolean isDouble(String str) {
try {
Double num2 = Double.valueOf(str);
logger.debug(num2 + " is a valid numeric string!");
// logger.debug(num2 + " is a valid numeric string!");
return true;
} catch (Exception e) {
logger.debug(str + " is an invalid numeric string!");
// logger.debug(str + " is an invalid numeric string!");
return false;
}
}
@@ -36,10 +36,10 @@ public class NumericUtil {
public static boolean isInteger(String str) {
try {
int num2 = Integer.valueOf(str);
logger.debug(num2 + " is an integer!");
// logger.debug(num2 + " is an integer!");
return true;
} catch (Exception e) {
logger.debug(str + " is not an integer!");
// logger.debug(str + " is not an integer!");
return false;
}
}