(1)BaseStringCfg 类修改为BaseStringCfg<T>,加入泛型。所有继承BaseStringCfg的类均已经修改泛型。
(2)HttpUrlCfg新增ratelimit一列,用于域名限速。 (3)域名限速新增/修改增加限速比例一列,列表展示新增限速比例一列。 (4)审核自定义域域名拦截与域名限速进行调整。 (5)删除MultipleCfg以及相关的dao,service (6StringCfgService重命名为DomainService,其不具备字符串配置都能调用的功能
This commit is contained in:
@@ -29,9 +29,13 @@ public final class Constants {
|
||||
*/
|
||||
public static final String USERREGION_DOMIAN_STR=Configurations.getStringProperty("userregion_domian_str", "DOMIAN_STR");
|
||||
/**
|
||||
* IP复用业务类型
|
||||
* IP限速业务类型
|
||||
*/
|
||||
public static final int SERVICE_IP_RATELIMIT = Configurations.getIntProperty("service_ip_ratelimit", 0x421);
|
||||
/**
|
||||
* 域名限速业务类型
|
||||
*/
|
||||
public static final int SERVICE_DOMAIN_RATELIMIT = Configurations.getIntProperty("service_domain_ratelimit", 0x421);
|
||||
/**
|
||||
* IP复用业务类型
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user