相关资料
http://blog.csdn.net/rosten/article/details/35220867
http://www.craft6.cn/detail/activiti_research_database.do
概要说明
ACT_RE_*: ‘RE’表示repository。 这个前缀的表包含了流程定义和流程静态资源 (图片,规则,等等)。
ACT_RU_*: ‘RU’表示runtime。 这些运行时的表,包含流程实例,任务,变量,异步任务,等运行中的数据。 Activiti只在流程实例执行过程中保存这些数据, 在流程结束时就会删除这些记录。 这样运行时表可以一直很小速度很快。
ACT_ID_*: ‘ID’表示identity。 这些表包含身份信息,比如用户,组等等。
ACT_HI_*: ‘HI’表示history。 这些表包含历史数据,比如历史流程实例, 变量,任务等等。
ACT_GE_*: 通用数据, 用于不同场景下。
ACT_EVT_*: EVT表示EVENT,目前只有一张表ACT_EVT_LOG,存储事件处理日志,方便管理员跟踪处理。
| 表名 | 说明 |
|---|---|
| act_evt_log | |
| act_ge_bytearray | 二进制数据表 |
| act_ge_property | 属性数据表存储整个流程引擎级别的数据,初始化表结构时,会默认插入三条记录 |
| act_hi_actinst | 历史节点表 |
| act_hi_attachment | 历史附件表 |
| act_hi_comment | 历史意见表 |
| act_hi_identitylink | 历史流程人员表 |
| act_hi_detail | 历史详情表,提供历史变量的查询 |
| act_hi_procinst | 历史流程实例表 |
| act_hi_taskinst | 历史任务实例表 |
| act_hi_varinst | 历史变量表 |
| act_id_group | 用户组信息表 |
| act_id_info | 用户扩展信息表 |
| act_id_membership | 用户与用户组对应信息表 |
| act_id_user | 用户信息表 |
| act_re_deployment | 部署信息表 |
| act_re_model | 流程设计模型部署表 |
| act_re_procdef | 流程定义数据表 |
| act_ru_event_subscr | throwEvent、catchEvent时间监听信息表 |
| act_ru_execution | 运行时流程执行实例表 |
| act_ru_identitylink | 运行时流程人员表,主要存储任务节点与参与者的相关信息 |
| act_ru_job | 运行时定时任务数据表 |
| act_ru_task | 运行时任务节点表 |
| act_ru_variable | 运行时流程变量数据表 |
本文详细介绍了Activiti流程引擎中的各类表及其用途,包括流程定义、运行时数据、历史数据、身份信息等关键表格,并解释了它们如何支撑工作流的运行与管理。
&spm=1001.2101.3001.5002&articleId=51895228&d=1&t=3&u=673cf508e5ad449ab33d7fed60ef6771)
3917

被折叠的 条评论
为什么被折叠?



