工作流服务组件和表介绍
摘要:7大服务介绍 23张表概览 Activiti使用到的表都是ACT_开头的。 ACT_RE_*: ’RE’表示repository(存储),RepositoryService接口所操作的表。带此前缀的表包含的是静态信息,如,流程定义,流程的资源(图片,规则等)。 ACT_RU_*: ‘RU’表示run
阅读全文
posted @
2019-10-12 01:10
西门夜说
阅读(1027)
推荐(0)
camunda任务的一些简单操作
摘要:public class ZccTaskService { TaskService taskService; @Before public void init(){ ProcessEngineConfiguration processEngineConfiguration = ProcessEngi
阅读全文
posted @
2019-10-12 00:32
西门夜说
阅读(3347)
推荐(1)
camunda流程实例启动的一些简单操作
摘要:public class ZccRuntimeService { RuntimeService runtimeService; RepositoryService repositoryService; @Before public void init(){ ProcessEngineConfigur
阅读全文
posted @
2019-10-12 00:30
西门夜说
阅读(4357)
推荐(0)
camunda流程部署的一些简单操作
摘要:act_re_deployment:(流程部署对象表)存放流程部署的显示名和部署时间 act_re_procdef:(流程定义表)存放流程定义的属性信息 act_ge_bytearray:(资源文件表)部署流程文件的存放地,文件以二进制形式存放 act_ge_property:主键生成策略表
阅读全文
posted @
2019-10-11 02:08
西门夜说
阅读(4854)
推荐(0)
camunda授权的一些简单操作
摘要:/** * 授权操作 */public class ZccAuthorizationService { AuthorizationService authorizationService; @Before public void init(){ ProcessEngineConfiguration
阅读全文
posted @
2019-10-09 21:21
西门夜说
阅读(1518)
推荐(0)
camunda用户的一些简单操作
摘要:act_id_group:存放组信息act_id_membership:存放用户与组的相关信息act_id_user:存放用户act_id_info:存放用户个人信息act_id_tenant:存放租户信息act_id_tenant_member:存放租户与用户或者组的相关信息/** * 操作用户
阅读全文
posted @
2019-10-07 02:05
西门夜说
阅读(2506)
推荐(0)