目录
由于Flowable 工作流框架只支持h2,mysql,oracle,postgres,db2 sql server 数据库,不支持国产数据库,所以本文介绍下Flowable6.8.0版本适配人大金仓(KingbaseES V008R006C008B0014),达梦数据库教程
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.9</version>
</dependency>
虽然用的是人大金仓数据库,但是可以使用postgresql 的数据驱动,ip+端口和数据库名称还是人大金仓的。参考:2. 概述 — KingbaseES产品手册https://help.kingbase.com.cn/v8/development/client-interfaces-frame/activiti/activiti-1.html
spring:
datasource:
username: kingbase
password: 123456
url: jdbc:postgresql://192.168.124.8:4321/flowable6?useUnicode=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true
driver-class-name: org.postgresql.Driver
这里只介绍了对于数据库的改动,springboot 整合 flowable 是默认已经完成了,然后进行的国产数据库适配。下面链接是demo
启动完成访问:http://localhost:7080/? 即可。