This commit is contained in:
法然
2022-10-09 16:37:19 +08:00
parent a3e3c7f5dd
commit dc74c6bcc4
12 changed files with 0 additions and 7517 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

130
a.json
View File

@@ -1,130 +0,0 @@
{
"@type": "com.alipay.guardian.client.drm.GuardianConfig",
"engineConfigs": {
"@type": "java.util.HashMap",
"LIMIT": {
"@type": "com.alipay.guardian.client.engine.limit.LimitEngineConfig",
"actionConfigMap": {
"@type": "java.util.HashMap"
},
"globalConfig": {
"enable": true,
"runMode": "CONTROL"
},
"ruleConfigMap": {
"@type": "java.util.HashMap",
100008: {
"@type": "com.alipay.guardian.client.engine.limit.LimitRuleConfig",
"actionConfig": {
"actionType": "LIMIT_EXCEPTION",
"limitUrlWithParams": true,
"responseContent": "服务限流抛出异常!!!!"
},
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"maxAllow": 2,
"period": 3000,
"trafficType": "ALL"
}
],
"callerAppsCompare": "IN",
"desc": "测试",
"enable": true,
"id": 100008,
"limitStrategy": "QpsLimiter",
"limitType": "GENERIC_LIMIT",
"maxBurstRatio": 0.0,
"resourceConfigs": [
{
"baseName": "com.alipay.quality.sofarpcserver.facade.rpc.RpcInvokeService.helloRpc",
"method": "helloRpc",
"paramRelation": "AND",
"resourceType": "METHOD",
"ruleIds": []
}
],
"resourceType": "METHOD",
"ruleBizId": "测试",
"runMode": "CONTROL"
},
1200008: {
"@type": "com.alipay.guardian.client.engine.limit.LimitRuleConfig",
"actionConfig": {
"actionType": "LIMIT_JSONMESSAGE",
"contentType": "text/javascript",
"limitUrlWithParams": true,
"responseContent": "yitao触发限流规则",
"responseHeader": {
"@type": "java.util.HashMap"
}
},
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"maxAllow": 0,
"period": 1000,
"trafficType": "ALL"
}
],
"callerAppsCompare": "IN",
"desc": "web页面限流faran",
"enable": true,
"id": 1200008,
"limitStrategy": "QpsLimiter",
"limitType": "GENERIC_LIMIT",
"maxBurstRatio": 0.0,
"resourceConfigs": [
{
"baseName": "/health.",
"interfaceName": "/health",
"method": "",
"paramConfigs": [],
"resourceType": "WEB",
"ruleIds": []
}
],
"resourceType": "WEB",
"ruleBizId": "web页面限流faran",
"runMode": "CONTROL"
},
1200009: {
"@type": "com.alipay.guardian.client.engine.limit.LimitRuleConfig",
"actionConfig": {
"actionType": "LIMIT_EXCEPTION",
"limitUrlWithParams": true,
"responseContent": "限流异常"
},
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"maxAllow": 1,
"period": 1000,
"trafficType": "ALL"
}
],
"callerAppsCompare": "IN",
"desc": "dsrconsole接口限流",
"enable": true,
"id": 1200009,
"limitStrategy": "QpsLimiter",
"limitType": "GENERIC_LIMIT",
"maxBurstRatio": 0.0,
"resourceConfigs": [
{
"baseName": "interfacename.methodname",
"method": "methodname",
"paramRelation": "AND",
"resourceType": "METHOD",
"ruleIds": []
}
],
"resourceType": "METHOD",
"ruleBizId": "dsrconsole接口限流",
"runMode": "CONTROL"
}
}
}
},
"version": 1
}

File diff suppressed because it is too large Load Diff

View File

@@ -1,232 +0,0 @@
-- MySQL dump 10.14 Distrib 5.5.68-MariaDB, for Linux (x86_64)
--
-- Host: rm-bp146b8k0w6bko38e.mysql.rds.aliyuncs.com Database: drmdata
-- ------------------------------------------------------
-- Server version 5.7.30-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `drm_attribute`
--
DROP TABLE IF EXISTS `drm_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '属性ID主键',
`name` varchar(500) DEFAULT NULL,
`parent_id` bigint(20) DEFAULT NULL COMMENT '资源ID',
`attribute_name` varchar(50) DEFAULT NULL COMMENT '属性名称',
`instance_id` varchar(50) DEFAULT NULL COMMENT '实例ID',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`gmt_modified` datetime DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uniq_attr` (`parent_id`,`instance_id`,`attribute_name`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COMMENT='动态资源属性表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `drm_data`
--
DROP TABLE IF EXISTS `drm_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`data_id` varchar(255) NOT NULL DEFAULT '' COMMENT '资源ID',
`zone` varchar(20) NOT NULL DEFAULT '' COMMENT '逻辑zone',
`instance_id` varchar(50) NOT NULL DEFAULT '' COMMENT '实例ID',
`data` longtext NOT NULL COMMENT '推送数据',
`version` bigint(20) NOT NULL COMMENT '数据版本',
`temp` tinyint(1) DEFAULT NULL COMMENT '是否是临时推送',
`type` smallint(6) DEFAULT NULL COMMENT '数据类型 0: 正常数据需推送1: 静态数据无需推送',
`gmt_create` datetime NOT NULL COMMENT '创建时间',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
`operator` varchar(64) DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`),
UNIQUE KEY `uniq_key` (`data_id`,`zone`,`instance_id`),
KEY `idx_instance_zone` (`instance_id`,`zone`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='动态资源推送数据表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `drm_log`
--
DROP TABLE IF EXISTS `drm_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
`data_id` varchar(255) DEFAULT NULL COMMENT '资源标识',
`instance_id` varchar(50) DEFAULT NULL COMMENT '实例ID',
`value` longtext COMMENT '推送值',
`operator` varchar(50) DEFAULT NULL COMMENT '操作人',
`client_ip` varchar(255) DEFAULT NULL COMMENT '操作者IP',
`push_mode` varchar(20) DEFAULT NULL COMMENT '推送类型',
`target` varchar(500) DEFAULT NULL COMMENT '推送目标',
`result` varchar(10) DEFAULT NULL COMMENT '推送结果',
`source_app` varchar(50) DEFAULT NULL COMMENT '发起操作的系统',
`fail_target` varchar(500) DEFAULT NULL COMMENT '失败的推送目标',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`gmt_modified` datetime DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
KEY `idx_data` (`data_id`(191),`instance_id`),
KEY `idx_create` (`gmt_create`)
) ENGINE=InnoDB AUTO_INCREMENT=28945 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='动态资源推送日志表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `drm_resource`
--
DROP TABLE IF EXISTS `drm_resource`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_resource` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(500) DEFAULT NULL,
`region` varchar(20) DEFAULT NULL COMMENT '资源域',
`app_name` varchar(30) DEFAULT NULL,
`resource_domain` varchar(41) DEFAULT NULL COMMENT '资源域和应用名',
`resource_id` varchar(150) DEFAULT NULL COMMENT '资源类路径',
`resource_version` varchar(10) DEFAULT NULL COMMENT '资源版本',
`instance_id` varchar(50) DEFAULT NULL COMMENT '实例ID',
`type` varchar(32) NOT NULL DEFAULT 'normal' COMMENT '资源类型。Normal正常资源类。tpl:模板类型',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`gmt_modified` datetime DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uniq_key` (`region`,`app_name`,`resource_id`,`resource_version`,`instance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COMMENT='动态资源表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `drm_resource_tpl_instance`
--
DROP TABLE IF EXISTS `drm_resource_tpl_instance`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_resource_tpl_instance` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tpl_id` bigint(20) unsigned NOT NULL COMMENT '模板id',
`resource_id` bigint(20) unsigned NOT NULL COMMENT '通过模板创建出来的资源id',
`params` varchar(2048) DEFAULT NULL COMMENT '模板填充的参数值',
`instance_id` varchar(50) DEFAULT NULL COMMENT '实例ID',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`gmt_modified` datetime DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
KEY `idx_tpl_instance` (`instance_id`,`tpl_id`,`resource_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='资源模板实例表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `drm_rollback_context`
--
DROP TABLE IF EXISTS `drm_rollback_context`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `drm_rollback_context` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`instance_id` varchar(50) NOT NULL DEFAULT '' COMMENT '实例ID',
`data_id` varchar(255) NOT NULL,
`unique_id` varchar(128) NOT NULL DEFAULT '',
`biz_no` varchar(128) DEFAULT NULL,
`backup_data` longtext,
`context` varchar(4096) DEFAULT NULL,
`gmt_create` datetime DEFAULT NULL,
`gmt_modified` datetime DEFAULT NULL,
PRIMARY KEY (`Id`),
UNIQUE KEY `uk_dataid` (`instance_id`,`data_id`,`unique_id`),
KEY `idx_uniqueid` (`unique_id`),
KEY `instance_dataid_modified` (`instance_id`,`data_id`,`gmt_modified`)
) ENGINE=InnoDB AUTO_INCREMENT=28961 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='存储回滚上下文';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `object_map`
--
DROP TABLE IF EXISTS `object_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `object_map` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`left_id` bigint(20) NOT NULL COMMENT '左边id',
`left_object_type` varchar(128) DEFAULT NULL COMMENT '左边对象类型',
`right_id` bigint(20) NOT NULL COMMENT '右边id',
`right_object_type` varchar(128) DEFAULT NULL COMMENT '右边对象类型',
`operate` varchar(64) DEFAULT NULL COMMENT '操作类型',
`context` varchar(2048) DEFAULT NULL COMMENT '其它信息',
`instance_id` varchar(50) DEFAULT NULL COMMENT '实例ID',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`gmt_modified` datetime DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
KEY `idx_left` (`left_id`,`left_object_type`),
KEY `idx_right` (`right_id`,`right_object_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='对象映射表,用于独占迁移共享';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `service_discovery`
--
DROP TABLE IF EXISTS `service_discovery`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_discovery` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`service_name` varchar(255) NOT NULL DEFAULT '' COMMENT '服务名称',
`ip` varchar(64) NOT NULL DEFAULT '' COMMENT '服务提供者IP',
`port` int(11) NOT NULL COMMENT '服务提供者端口号',
`status` varchar(11) DEFAULT 'ONLINE' COMMENT '服务状态',
`context` varchar(2048) DEFAULT NULL COMMENT '额外的上下文信息',
`gmt_create` datetime NOT NULL COMMENT '创建时间',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_provider` (`service_name`,`ip`,`port`),
KEY `idx_modifiedtime` (`gmt_modified`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='服务注册表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `system_config`
--
DROP TABLE IF EXISTS `system_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `system_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`key` varchar(128) NOT NULL DEFAULT '' COMMENT '配置key',
`value` varchar(4096) NOT NULL DEFAULT '' COMMENT '配置值',
`gray_ips` varchar(1024) DEFAULT NULL,
`gmt_create` datetime NOT NULL COMMENT '创建时间',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uniq_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='系统配置表';
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-09-07 19:33:57

View File

@@ -1,55 +0,0 @@
{
"@type": "com.alipay.guardian.client.drm.GuardianConfig",
"engineConfigs": {
"@type": "java.util.HashMap",
"LIMIT": {
"@type": "com.alipay.guardian.client.engine.limit.LimitEngineConfig",
"actionConfigMap": {
"@type": "java.util.HashMap"
},
"globalConfig": {
"enable": true,
"runMode": "CONTROL"
},
"ruleConfigMap": {
"@type": "java.util.HashMap",
1200007: {
"@type": "com.alipay.guardian.client.engine.limit.LimitRuleConfig",
"actionConfig": {
"actionType": "LIMIT_JSONMESSAGE",
"contentType": "text/javascript",
"limitUrlWithParams": true,
"responseContent": "触发限流规则"
},
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"maxAllow": 1,
"period": 1000,
"trafficType": "ALL"
}
],
"callerAppsCompare": "IN",
"desc": "web限流",
"enable": true,
"id": 1200007,
"limitStrategy": "QpsLimiter",
"limitType": "GENERIC_LIMIT",
"maxBurstRatio": 0.0,
"resourceConfigs": [
{
"baseName": "/health",
"paramRelation": "AND",
"resourceType": "WEB",
"ruleIds": []
}
],
"resourceType": "WEB",
"ruleBizId": "web限流",
"runMode": "CONTROL"
}
}
}
},
"version": 1
}

File diff suppressed because it is too large Load Diff

View File

@@ -1 +0,0 @@
~

View File

@@ -1,66 +0,0 @@
Wed Sep 07 09:27:09 CST 2022[] Ready to new database ms_db_1752684443565494565_676208648
Wed Sep 07 09:27:09 CST 2022[] Create DB instance request parameters :{"clientToken":"7fe4964a-07a0-41fc-b431-9e860b4e032b","dbInstanceClass":"alidbpass.alisql.docker.4xsmall","dbInstanceNetTypeEnum":"INTRANET","dbInstanceStorage":100,"engine":"MYSQL","engineVersion":"MYSQL6","options":{"obCluster":"antstackmeta"},"payType":"POSTPAID","regionId":"cn-hangzhou","securityIPList":"0.0.0.0/0","vSwitchId":""}
org.springframework.beans.BeanInstantiationException: Failed to instantiate [cn.com.antcloud.aciaasconnectorcore.facade.result.CreateResult]: Is the constructor accessible?; nested exception is java.lang.IllegalAccessException: Class org.springframework.beans.BeanUtils can not access a member of class cn.com.antcloud.aciaasconnectorcore.facade.result.CreateResult with modifiers "protected"
at org.springframework.beans.BeanUtils.instantiate(BeanUtils.java:83)
at cn.com.antcloud.aciaasconnectorcore.core.conn.interceptor.BaseInvocationHelper.buildErrorResult(BaseInvocationHelper.java:64)
at cn.com.antcloud.aciaasconnectorcore.core.conn.interceptor.FacadeMethodInterceptor.invoke(FacadeMethodInterceptor.java:65)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213)
at com.sun.proxy.$Proxy972.createDatabaseInstance(Unknown Source)
at com.alipay.yunyou.biz.service.handler.rdb.rdbService.RdbIntegrationService.createDatabaseInstance(RdbIntegrationService.java:127)
at sun.reflect.GeneratedMethodAccessor28244.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.alipay.sofa.runtime.service.binding.JvmBindingAdapter$JvmServiceInvoker$1.call(JvmBindingAdapter.java:138)
at com.alipay.ambush.catalog.AbstractCatalog.doIntercept(AbstractCatalog.java:251)
at com.alipay.ambush.api.AmbushRPCUtil.invokeClient(AmbushRPCUtil.java:80)
at com.alipay.sofa.runtime.service.binding.JvmBindingAdapter$JvmServiceInvoker.doInvoke(JvmBindingAdapter.java:141)
at com.alipay.sofa.runtime.spi.component.ServiceProxy.invoke(ServiceProxy.java:35)
at com.alipay.sofa.runtime.spi.component.ServiceProxy.invoke(ServiceProxy.java:25)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:655)
at com.alipay.yunyou.biz.service.handler.rdb.rdbService.RdbIntegrationService$$EnhancerBySpringCGLIB$$d1386db1.createDatabaseInstance()
at com.alipay.yunyou.biz.service.handler.rdb.RdbCreateHandler.lambda$execute$2(RdbCreateHandler.java:315)
at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:133)
at com.alipay.yunyou.biz.service.handler.rdb.RdbCreateHandler.execute(RdbCreateHandler.java:268)
at com.alipay.yunyou.biz.service.handler.rdb.RdbCreateHandler.execute(RdbCreateHandler.java:76)
at com.alipay.yunyou.biz.service.engine.diffrun.DiffAndRunEngine.execute(DiffAndRunEngine.java:162)
at com.alipay.yunyou.biz.service.engine.diffrun.DiffAndRunEngine$1.doInTransaction(DiffAndRunEngine.java:130)
at com.alipay.yunyou.biz.service.engine.diffrun.DiffAndRunEngine$1.doInTransaction(DiffAndRunEngine.java:127)
at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:133)
at com.alipay.yunyou.biz.service.engine.diffrun.DiffAndRunEngine.executeWithTransaction(DiffAndRunEngine.java:127)
at com.alipay.yunyou.biz.service.engine.diffrun.DiffAndRunEngine.execute(DiffAndRunEngine.java:107)
at com.alipay.yunyou.biz.service.cmd.ops.execute.engine.HandlerEngine2.doInvoke(HandlerEngine2.java:93)
at com.alipay.yunyou.biz.service.cmd.ops.execute.engine.HandlerEngine2.execute(HandlerEngine2.java:68)
at com.alipay.yunyou.biz.service.cmd.ops.execute.callback.ActionHandlerDelegate2.execute(ActionHandlerDelegate2.java:44)
at org.activiti.engine.impl.delegate.invocation.JavaDelegateInvocation.invoke(JavaDelegateInvocation.java:34)
at org.activiti.engine.impl.delegate.invocation.DelegateInvocation.proceed(DelegateInvocation.java:35)
at org.activiti.engine.impl.delegate.invocation.DefaultDelegateInterceptor.handleInvocation(DefaultDelegateInterceptor.java:25)
at org.activiti.engine.impl.bpmn.behavior.ServiceTaskJavaDelegateActivityBehavior.execute(ServiceTaskJavaDelegateActivityBehavior.java:40)
at org.activiti.engine.impl.bpmn.helper.ClassDelegate.execute(ClassDelegate.java:221)
at org.activiti.engine.impl.agenda.ContinueProcessOperation.executeActivityBehavior(ContinueProcessOperation.java:211)
at org.activiti.engine.impl.agenda.ContinueProcessOperation.executeSynchronous(ContinueProcessOperation.java:145)
at org.activiti.engine.impl.agenda.ContinueProcessOperation.continueThroughFlowNode(ContinueProcessOperation.java:102)
at org.activiti.engine.impl.agenda.ContinueProcessOperation.run(ContinueProcessOperation.java:67)
at org.activiti.engine.impl.interceptor.CommandInvoker.executeOperation(CommandInvoker.java:73)
at org.activiti.engine.impl.interceptor.CommandInvoker.executeOperations(CommandInvoker.java:57)
at org.activiti.engine.impl.interceptor.CommandInvoker.execute(CommandInvoker.java:42)
at org.activiti.engine.impl.interceptor.TransactionContextInterceptor.execute(TransactionContextInterceptor.java:48)
at org.activiti.engine.impl.interceptor.CommandContextInterceptor.execute(CommandContextInterceptor.java:59)
at org.activiti.spring.SpringTransactionInterceptor$1.doInTransaction(SpringTransactionInterceptor.java:47)
at org.springframework.transaction.support.TransactionTemplate.execute(TransactionTemplate.java:133)
at org.activiti.spring.SpringTransactionInterceptor.execute(SpringTransactionInterceptor.java:45)
at org.activiti.engine.impl.interceptor.LogInterceptor.execute(LogInterceptor.java:29)
at com.alipay.cloud.apyunqing.biz.orchestration.activiti.custom.CustomPreCommandInterceptor.execute(CustomPreCommandInterceptor.java:24)
at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:44)
at org.activiti.engine.impl.cfg.CommandExecutorImpl.execute(CommandExecutorImpl.java:39)
at org.activiti.engine.impl.asyncexecutor.ExecuteAsyncRunnable.executeJob(ExecuteAsyncRunnable.java:77)
at org.activiti.engine.impl.asyncexecutor.ExecuteAsyncRunnable.run(ExecuteAsyncRunnable.java:69)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:853)
Caused by: java.lang.IllegalAccessException: Class org.springframework.beans.BeanUtils can not access a member of class cn.com.antcloud.aciaasconnectorcore.facade.result.CreateResult with modifiers "protected"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:102)
at java.lang.Class.newInstance(Class.java:436)
at org.springframework.beans.BeanUtils.instantiate(BeanUtils.java:77)
... 57 more

View File

@@ -1,37 +0,0 @@
CREATE TABLE `drm_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`data_id` varchar(255) NOT NULL DEFAULT '' COMMENT '资源ID',
`zone` varchar(20) NOT NULL DEFAULT '' COMMENT '逻辑zone',
`instance_id` varchar(50) NOT NULL DEFAULT '' COMMENT '实例ID',
`data` longtext NOT NULL COMMENT '推送数据',
`version` bigint(20) NOT NULL COMMENT '数据版本',
`temp` tinyint(1) DEFAULT NULL COMMENT '是否是临时推送',
`type` smallint(6) DEFAULT NULL COMMENT '数据类型 0: 正常数据需推送1: 静态数据无需推送',
`gmt_create` datetime NOT NULL COMMENT '创建时间',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
`operator` varchar(64) DEFAULT NULL COMMENT '创建人',
PRIMARY KEY (`id`),
UNIQUE KEY `uniq_key` (`data_id`,`zone`,`instance_id`),
KEY `idx_instance_zone` (`instance_id`,`zone`),
KEY `idx_gmt_modified` (`gmt_modified`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=utf8mb4 COMMENT='动态资源推送数据表'
--
show variables like 'innodb_large_prefix';
show variables like 'innodb_file_format';
-- 数据库设置
set global innodb_large_prefix=ON;//
set global innodb_file_format=BARRACUDA;//
-- 表字段设置为动态格式
alter table drm_data row_format=dynamic;
alter table drm_log row_format=dynamic;
alter table drm_rollback_context row_format=dynamic;
-- 修改数据库的编码
alter table drm_data convert to character SET utf8mb4;
alter table drm_log convert to character SET utf8mb4;
alter table drm_rollback_context convert to character SET utf8mb4;

View File

@@ -1,21 +0,0 @@
This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021/W32TeX) (preloaded format=latex 2021.8.26) 24 MAR 2022 20:33
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**quit
! Emergency stop.
<*> quit
End of file on the terminal!
Here is how much of TeX's memory you used:
3 strings out of 478995
107 string characters out of 5862233
283032 words of memory out of 5000000
17591 multiletter control sequences out of 15000+600000
403430 words of font info for 27 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
0i,0n,0p,6b,6s stack positions out of 5000i,500n,10000p,200000b,80000s
No pages of output.

View File

@@ -1,28 +0,0 @@
{
"desc": "接口限流",
"resourceType": "METHOD",
"runMode": "CONTROL",
"limitStrategy": "QpsLimiter",
"actionConfig": {
"actionType": "LIMIT_EXCEPTION",
"responseContent": "触发限流规则"
},
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"period": "1000",
"maxAllow": "10",
"trafficType": "ALL"
}
],
"resourceConfigs": [
{
"interface": "com.alipay.yit.rule",
"method": "updataRule",
"paramRelation": "AND",
"baseName": "com.alipay.yit.rule.updataRule",
"resourceType": "METHOD"
}
]
}

View File

@@ -1,34 +0,0 @@
{
"limitStrategy": "QpsLimiter",
"actionConfig": {
"actionType": "LIMIT_EXCEPTION",
"responseContent": "授信调整限流"
},
"resourceConfigs": [
{
"method": "adjustCredit",
"paramRelation": "AND",
"interface": "com.antgroup.gfrcreditcore.facade.service.GfrCreditManageFacade",
"baseName": "com.antgroup.gfrcreditcore.facade.service.GfrCreditManageFacade.adjustCredit",
"resourceType": "METHOD"
},
{
"method": "clearOrgCredit",
"paramRelation": "AND",
"interface": "com.antgroup.gfrcreditcore.facade.service.GfrCreditManageFacade",
"baseName": "com.antgroup.gfrcreditcore.facade.service.GfrCreditManageFacade.clearOrgCredit",
"resourceType": "METHOD"
}
],
"runMode": "CONTROL",
"calculationConfigs": [
{
"calculationType": "INVOKE_BY_TIME",
"period": "1000",
"trafficType": "ALL",
"maxAllow": "80"
}
],
"desc": "授信调整/清退限流[SYNC:4800004]",
"resourceType": "METHOD"
}