您好,登錄后才能下訂單哦!
這篇文章主要介紹了springboot如何集成camunda,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
camunda使用Java開的工作流引擎。這里使用springboot 2.2.6.release + camunda 3.4.2
使用camunda流程引擎、web界面、Rest服務接口相應依賴如下:
流程引擎:camunda-bpm-spring-boot-starter
Rest服務接口:camunda-bpm-spring-boot-starter-rest
web界面模塊:camunda-bpm-spring-boot-starter-webapp
如果僅僅是使用流程引擎,只需要引入camunda-bpm-spring-boot-starter就可以了。
(1)pom.xml文件配置
<properties> <camunda.version>3.4.2</camunda.version> </properties> <!-- camunda --> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> <version>${camunda.version}</version> </dependency> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId> <version>${camunda.version}</version> </dependency> <!-- camunda --> <dependency> <groupId>org.camunda.bpm.springboot</groupId> <artifactId>camunda-bpm-spring-boot-starter</artifactId> <version>${camunda.version}</version> </dependency>
(2)yml文件配置
camunda: bpm: # 配置賬戶密碼來訪問Camunda自帶的管理界面 admin-user: id: admin password: admin first-name: admin filter: create: All tasks #指定數(shù)據(jù)庫類型 # database: # type: mysql #禁止自動部署resources下面的bpmn文件 auto-deployment-enabled: false #禁止index跳轉(zhuǎn)到Camunda自帶的管理界面,默認true # webapp: # index-redirect-enabled: false
(3)啟動項目
瀏覽器輸入:http://localhost:8050/family-admin(項目的tomcat-context路徑)可以查看當前工作流中的相關(guān)tasklist等
第一次啟動,Mysql數(shù)據(jù)庫會自動生成Camunda相關(guān)數(shù)據(jù)庫表
ACT_RE_*:RE代表存repository。帶有此前綴的表包含“靜態(tài)”信息,例如流程定義和流程資源(圖像、規(guī)則等)。
ACT_RU_*:RU代表runtime。這些是運行時表,包含流程實例、用戶任務、變量、作業(yè)等的運行時數(shù)據(jù)。引擎僅在流程實例執(zhí)行期間存儲運行時數(shù)據(jù),并在流程實例結(jié)束時刪除記錄。這使運行時表既小又快。
ACT_ID_*:ID代表identity。這些表包含身份信息,例如用戶、組等。
ACT_HI_*:HI代表history。這些是包含歷史數(shù)據(jù)的表,例如過去的流程實例、變量、任務等。
ACT_GE_*:GE代表 general一般數(shù)據(jù),用于各種用例
感謝你能夠認真閱讀完這篇文章,希望小編分享的“springboot如何集成camunda”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。