关于整合flowable流程的开源框架_flowable笔记 - 环境配置

简介

Flowable是一款基于Java的开源业务流程引擎,核心BPMN流程引擎,附带DMN决策表和CMMN案例管理引擎。

与Spring完美集成,本身自带REST API。

目前最新版是Flowable 6.4.0(2018年10月26日)

集成到springboot

1. maven依赖

使用的springboot版本2.0.5.RELEASE

flowable提供了与springboot集成的starter包,只需要引入到pom文件里,

一定要注意引入自己需要的就行了!

starter

详细

flowable-spring-boot-starter-cmmn

包含CMMN案例管理引擎

flowable-spring-boot-starter-cmmn-rest

同上,另外包含REST API

flowable-spring-boot-starter-dmn

包含DMN决策表引擎

flowable-spring-boot-starter-dmn-rest

同上,另外包含REST API

flowable-spring-boot-starter-process

包含业务流程引擎,会自动扫描resources/processes下的.bpmn20、.bpmn20.xml文件并部署

flowable-spring-boot-starter-process-rest

同上,另外包含REST API

flowable-spring-boot-starter

包含flowable全家桶(Process流程引擎, CMMN案例管理引擎, DMN决

你可能感兴趣的:(关于整合flowable流程的开源框架_flowable笔记 - 环境配置)