目標
camunda框架與springboot的集成
介紹
Camunda是基于Java語言胆胰,支持BPMN標準的工作流和流程自動化框架狞贱,并且還支持CMMN規(guī)范,DMN規(guī)范蜀涨。具體組件如下圖(引用官方圖):
需要了解更多的細節(jié)請移步官網(wǎng):官方文檔 GitHub
本文重點(入門camunda與springboot集成)
- 首先新建一個springboot工程
- 用idea打開下載好的項目瞎嬉, 在pom文件導(dǎo)入camunda的依賴
<dependency>
<groupId>org.camunda.bpm.springboot</groupId>
<artifactId>camunda-bpm-spring-boot-starter</artifactId>
<version>7.13.0</version>
</dependency>
- 配置數(shù)據(jù)源, 后直接運行項目就集成成功啦厚柳!會自動創(chuàng)建工作流的表
spring:
datasource:
url: jdbc:mysql://localhost:3306/camunda?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username: root
password: root
下一篇將跑起一個流程