zoukankan      html  css  js  c++  java
  • 【原】Spring activiti 环境搭建之数据库创建

        由于在开发工作流的时候,避免不了要保存一些数据和流程走向;所以在搭建Spring activiti开发环境的时候需要把官方提供的23张表创建到我们的DB,后续的流程都会在这些表中记录。

       1.创建代码如下:

    	@Test
    	public void createactivityTable(){
    		
    		ProcessEngineConfiguration p = ProcessEngineConfiguration.createStandaloneInMemProcessEngineConfiguration();
    		p.setJdbcDriver("com.mysql.jdbc.Driver");
    		p.setJdbcUrl("jdbc:mysql://localhost:3306/activity?useUnicode=true&characterEncoding=utf-8");
    		p.setJdbcUsername("root");
    		p.setJdbcPassword("123");
    		
    		p.setDatabaseSchemaUpdate(ProcessEngineConfiguration.DB_SCHEMA_UPDATE_TRUE);
    		p.buildProcessEngine();
    	}
    

     2.运行无误之后打开mysql对应的数据库可以看到23张表已经创建完毕:

         

        3.关于23表的作用如下所示:

    序号

    表名

    说明

    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

    历史任务实例表

    10

    act_hi_varinst

    历史变量表

    11

    act_id_group

    用户组信息表

    12

    act_id_info

    用户扩展信息表

    13

    act_id_membership

    用户与用户组对应信息表

    14

    act_id_user

    用户信息表

    15.  

    act_re_deployment

    部署信息表

    16.  

    act_re_model

    流程设计模型部署表

    17

    act_re_procdef

    流程定义数据表

    18

    act_ru_event_subscr

    throwEvent、catchEvent时间监听信息表

    19

    act_ru_execution

    运行时流程执行实例表

    20

    act_ru_identitylink

    运行时流程人员表,主要存储任务节点与参与者的相关信息

    21

    act_ru_job

    运行时定时任务数据表

    22

    act_ru_task

    运行时任务节点表

    23

    act_ru_variable

    运行时流程变量数据表


  • 相关阅读:
    CentOS最常用命令
    cssreset
    mysql cmd连接 乱码
    帮朋友转发招聘信息 南京知名互联网公司招聘java、测试、前端,具体私聊
    InputStream写文件出现大量NUL
    iOS app开发资料整理
    完美的视图旋转算法
    Windows上使用clang编译
    nodejs
    Rpath handling on Linux
  • 原文地址:https://www.cnblogs.com/zdd-java/p/6512381.html
Copyright © 2011-2022 走看看