Flowable6.8适配人大金仓数据库方案

发布时间:2024年01月04日

目录

前言

一、Flowable6.8 适配人大金仓数据库

1.引入postgreSQL依赖

2.配置驱动

总结


前言

由于Flowable 工作流框架只支持h2,mysql,oracle,postgres,db2 sql server 数据库,不支持国产数据库,所以本文介绍下Flowable6.8.0版本适配人大金仓(KingbaseES V008R006C008B0014),达梦数据库教程


一、Flowable6.8 适配人大金仓数据库

1.引入postgreSQL依赖

<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>42.2.9</version>
        </dependency>

2.配置驱动

虽然用的是人大金仓数据库,但是可以使用postgresql 的数据驱动,ip+端口和数据库名称还是人大金仓的。参考:2. 概述 — KingbaseES产品手册icon-default.png?t=N7T8https://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

https://download.csdn.net/download/qq_41169544/88701281icon-default.png?t=N7T8https://download.csdn.net/download/qq_41169544/88701281

启动完成访问:http://localhost:7080/? 即可。

文章来源:https://blog.csdn.net/qq_41169544/article/details/135388146
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。