springboot资源下载https://flowable.com/open-source/downloads/
springboot集成flowable:https://zhuanlan.zhihu.com/p/67761802
flowable配置mysql数据源https://upliu.net/flowable-%E9%85%8D%E7%BD%AE%E8%BF%90%E8%A1%8C%E5%9C%A8-mysql-%E6%95%B0%E6%8D%AE%E5%BA%93.html
从Maven依赖添加MySQL驱动与Tomcat连接池:
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.20</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<version>9.0.8</version>
</dependency>
修改数据连接驱动
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/flowable?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
flowable源码编译
https://blog.csdn.net/houyj1986/article/details/85725202
flowable部署
https://blog.csdn.net/qq_41720208/article/details/102249379
进入flowable-rest正确姿势
http://127.0.0.1:8080/flowable-rest/docs/
部署牛的经验分享
http://www.shareniu.com/article/28.htm
SpringBoot + Flowable基础使用