activiti筆記

1、對流程設計器的使用說明

打開菜單Windows->Preferences->Activiti->Save下流程流程圖片的生成方式:java

雖然流程引擎在單獨部署bpmn文件時會自動生成圖片,但在實際開發過程當中,自動生成的圖片會致使和BPMN中的座標有出入,在實際項目中展現流程當前位置圖會有問題。mysql

所在完成以上配置後,會由咱們本身來管理流程圖片。在發佈流程時把流程規則文件和流程圖片一塊兒上傳就好了。spring

2、數據庫sql

Activiti的後臺是有數據庫的支持,全部的表都以ACT_開頭。 第二部分是表示表的用途的兩個字母標識。 用途也和服務的API對應。數據庫

1)        ACT_RE_*: 'RE'表示repository 這個前綴的表包含了流程定義和流程靜態資源 (圖片,規則,等等)。api

2)        ACT_RU_*: 'RU'表示runtime 這些運行時的表,包含流程實例,任務,變量,異步任務,等運行中的數據。 Activiti只在流程實例執行過程當中保存這些數據, 在流程結束時就會刪除這些記錄。 這樣運行時表能夠一直很小速度很快。mybatis

3)        ACT_ID_*: 'ID'表示identity 這些表包含身份信息,好比用戶,組等等。app

4)        ACT_HI_*: 'HI'表示history 這些表包含歷史數據,好比歷史流程實例, 變量,任務等等。異步

5)        ACT_GE_*: 通用數據, 用於不一樣場景下。ide

三、  資源庫流程規則表

1)           act_re_deployment      部署信息表

2)         act_re_model          流程設計模型部署表

3)         act_re_procdef       流程定義數據表

4、運行時數據庫表

1)         act_ru_execution     運行時流程執行實例表

2)         act_ru_identitylink   運行時流程人員表,主要存儲任務節點與參與者的相關信息

3)         act_ru_task                運行時任務節點表

4)         act_ru_variable         運行時流程變量數據表

5、歷史數據庫表

1)         act_hi_actinst           歷史節點表

2)         act_hi_attachment             歷史附件表

3)         act_hi_comment                歷史意見表

4)         act_hi_identitylink             歷史流程人員表

5)         act_hi_detail                       歷史詳情表,提供歷史變量的查詢

6)         act_hi_procinst                   歷史流程實例表

7)         act_hi_taskinst           歷史任務實例表

8)         act_hi_varinst            歷史變量表

6、組織機構表

  1. act_id_group             用戶組信息表

  2. act_id_info                 用戶擴展信息表

  3. act_id_membership 用戶與用戶組對應信息表

  4. act_id_user                用戶信息表

這四張表很常見,基本的組織機構管理,關於用戶認證方面建議仍是本身開發一套,組件自帶的功能太簡單,使用中有不少需求難以知足

7、通用數據表

  1. act_ge_bytearray               二進制數據表

  2. act_ge_property                屬性數據表存儲整個流程引擎級別的數據,初始化表結構時,會默認插入三條記錄,

8activiti.cfg.xml

Activiti核心配置文件,配置流程引擎建立工具的基本參數和數據庫鏈接池參數。

定義數據庫配置參數:

l  jdbcUrl: 數據庫的JDBC URL

l  jdbcDriver: 對應不一樣數據庫類型的驅動。

l  jdbcUsername: 鏈接數據庫的用戶名。

l  jdbcPassword: 鏈接數據庫的密碼。

基於JDBC參數配置的數據庫鏈接 會使用默認的MyBatis鏈接池。 下面的參數能夠用來配置鏈接池(來自MyBatis參數):

l  jdbcMaxActiveConnections: 鏈接池中處於被使用狀態的鏈接的最大值。默認爲10

l  jdbcMaxIdleConnections: 鏈接池中處於空閒狀態的鏈接的最大值。

l  jdbcMaxCheckoutTime: 鏈接被取出使用的最長時間,超過期間會被強制回收。 默認爲2000020秒)。

l  jdbcMaxWaitTime: 這是一個底層配置,讓鏈接池能夠在長時間沒法得到鏈接時, 打印一條日誌,並從新嘗試獲取一個鏈接。(避免由於錯誤配置致使沉默的操做失敗)。 默認爲2000020秒)。

 

九、  springmybatis集成activiti時,注意mybatisactiviti版本衝突問題,如後臺報」order by order by」錯誤時,緣由就是因爲mybatisspring版本的衝突問題。以下圖

### The error may exist in org/activiti/db/mapping/entity/ProcessDefinition.xml
### The error may involve org.activiti.engine.impl.persistence.entity.ProcessDefinitionEntity.selectProcessDefinitionsByQueryCriteria_mysql
### The error occurred while executing a query
### SQL: select distinct RES.*              from ACT_RE_PROCDEF RES            WHERE  RES.VERSION_ = (select max(VERSION_) from ACT_RE_PROCDEF where KEY_ = RES.KEY_                                              )           order by  order by RES.DEPLOYMENT_ID_ desc       LIMIT ? OFFSET ?
### Cause: java.sql.SQLException: sql injection violation, syntax error: syntax error, error in :'rder by RES.DEPLOYMENT_ID_ desc  
 ',expect BY, actual BY by : select distinct RES.* 
           from ACT_RE_PROCDEF RES
          WHERE  RES.VERSION_ = (select max(VERSION_) from ACT_RE_PROCDEF where KEY_ = RES.KEY_ 
                ) 
        order by  order by RES.DEPLOYMENT_ID_ desc  
    LIMIT ? OFFSET ?

十、 引擎api

processEngine processEngine = ProcessEngines.getDefaultProcessEngine();
RuntimeService runtimeService = processEngine.getRuntimeService();
RepositoryService repositoryService = processEngine.getRepositoryService();
TaskService taskService = processEngine.getTaskService();
ManagementService managementService = processEngine.getManagementService();
IdentityService identityService = processEngine.getIdentityService();
HistoryService historyService = processEngine.getHistoryService();
FormService formService = processEngine.getFormService();

processEngines.getDefaultProcessEngine()會在第一次被調用時初始並構建 process engine 接下來對該方法的調用返回的都是同一個流程引擎。 利用 ProcessEngines.init() ProcessEngines.destroy()能夠正確建立、關閉流程引擎。ProcessEngines 會瀏覽全部 activiti.cfg.xml activiti-context.xml 文件。對於那些 activiti.cfg.xml 文件, 將以 Activiti 特有的方式來構建流程引擎:

ProcessEngineConfiguration.createProcessEngineConfigurationFromInputStream(inputStream).buildProcessEngine() 對於那些activiti-context.xml 文件, 將以 Spring 的方式來構建流程引擎:首先,建立 spring 應用上下文;而後,從該上下文中獲取
流程引擎。

十一、 spring集成activiti

十二、  

<!-- 加載activiti引擎 -->
<bean id="processEngine" class="org.activiti.spring.ProcessEngineFactoryBean">
   <property name="processEngineConfiguration" ref="processEngineConfiguration" />
</bean>
<bean id="processEngineConfiguration"
     class="org.activiti.spring.SpringProcessEngineConfiguration">
   <property name="dataSource" ref="druidDataSource" />
   <property name="transactionManager" ref="transactionManager" />
   <property name="databaseSchemaUpdate" value="true" />
   <property name="jobExecutorActivate" value="false" />
</bean>
<!-- activiti的各類服務接口 -->
<bean id="repositoryService" factory-bean="processEngine" factory-method="getRepositoryService" />
<bean id="runtimeService" factory-bean="processEngine" factory-method="getRuntimeService" />
<bean id="taskService" factory-bean="processEngine" factory-method="getTaskService" />
<bean id="historyService" factory-bean="processEngine" factory-method="getHistoryService" />
<bean id="managementService" factory-bean="processEngine" factory-method="getManagementService" />
<!-- Druid鏈接池-->
<bean id="druidDataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
    <!-- 基本屬性 url、user、password -->
    <property name="url" value="${url}" />
    <property name="username" value="${username}" />
    <property name="password" value="${password}" />
    <!-- 配置初始化大小、最小、最大 -->
    <property name="initialSize" value="1" />
    <property name="minIdle" value="1" />
    <property name="maxActive" value="20" />
    <!-- 配置獲取鏈接等待超時的時間 -->
    <property name="maxWait" value="60000" />
    <!-- 配置間隔多久才進行一次檢測,檢測須要關閉的空閒鏈接,單位是毫秒 -->
    <property name="timeBetweenEvictionRunsMillis" value="60000" />
    <!-- 配置一個鏈接在池中最小生存的時間,單位是毫秒 -->
    <property name="minEvictableIdleTimeMillis" value="300000" />
    <property name="validationQuery" value="SELECT 1" />
    <property name="testWhileIdle" value="true" />
    <property name="testOnBorrow" value="false" />
    <property name="testOnReturn" value="false" />
    <!-- 打開PSCache,而且指定每一個鏈接上PSCache的大小 -->
    <property name="poolPreparedStatements" value="false" />
    <property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
    <!-- 配置監控統計攔截的filters,默認stat,可選mergeStat/wall/log4j -->
    <property name="filters" value="stat,wall,log4j" />
    <property name="proxyFilters">
        <list>
            <ref bean="mergeStat_filter" />
            <ref bean="log4j-filter" />
        </list>
    </property>
</bean>
<!--事務管理-->
<bean id="transactionManager"
      class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="druidDataSource" />
</bean>

1三、 流程變量:在流程實例中,能夠將PO對象做爲流程變量與流程實例進行關聯,不過必定要實現Serializable接口。也能夠將po主鍵做爲業務key,在啓動流程實例的時候與流程實例創建雙向關聯:PrcoessInstance processInstance = runtimeService.startProcessInstanceByKey(processDefinitionKey, businessKey, variables);

1四、 多實例連接:多實例、會籤

相關文章
相關標籤/搜索