引入依赖

1
implementation 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-webapp:7.17.0'

这个依赖同时会引入一个Web端的管理界面,如果不需要只需要引入

1
implementation 'org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter:7.17.0'

添加配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
camunda:
bpm:
database:
# 数据库类型可以不加
type: mariadb
# 关闭批量处理
jdbc-batch-processing: false
# 默认用户配置
admin-user:
# 用户名
id: admin
password: 123456
firstName: Demo
filter:
create: All tasks

其他配置官方文档

启动项目。访问:http://localhost:port

成功 | center