技术选型

Flowable、Activiti、camunda 关系

集成springboot

http://www.shareniu.com/flowable6.5_zh_document/bpm/index.html#springSpringBoot

1
2
3
4
5
6
<!-- pom.xml -->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
<version>${flowable.version}</version>
</dependency>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# application.yml
flowable:
database-schema-update: true
async-executor-activate: false
dmn:
enabled: false
cmmn:
enabled: false
content:
enabled: true
app:
enabled: false
idm:
enabled: false
rest-api-enabled: false

注意: jdbc连接要配上参数 &nullCatalogMeansCurrent=true,否则创建表会失败.