近期公司的项目在做国产化兼容,数据库方面试了下国产达梦数据库,踩了不少坑。。
项目使用SpringBoot 2.2.6+Mybatis,工作流使用Flowable 6.4.2,连接池使用Druid
配置文件
pom.xml中引入驱动jar包(可在达梦安装目录中找到)
<!--达梦数据库-->
<dependency>
<groupId>com.dm</groupId>
<artifactId>dmjdbc8</artifactId>
<version>1.8</version>
<scope>system</scope>
<systemPath>${pom.basedir}/lib/DmJdbcDriver18.jar</systemPath>
</dependency>
application.properties中对应修改
#******达梦******
spring.datasource.driver-class-name=dm.jdbc.driver.DmDriver
spring.datasource.url=jdbc:dm://127.0.0.1:5236/SYSDBA
spring.datasource.username=SYSDBA
spring.datasource.password=123456789
#达梦数据库不支持此项
#spring.datasource.druid.filters=stat,wall
#pagehelper使用mysql语法
pagehelper.helper-dialect=mysql
#mybatis设置database-id
mybatis.configuration.database-id=dm
#达梦数据库关闭flowable自动更新数据库结构
flowable.database-schema-update=false
Flowable修改
上面设置完成后尝试启动项目,报错信息如下:
Caused by: org.flowable.common.engine.api.FlowableException: couldn't deduct database type from database product name 'DM DBMS'
at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDatabaseType(AbstractEngineConfiguration.java:282)
at org.flowable.common.engine.impl.AbstractEngineConfiguration.initDataSource(AbstractEngineConfiguration.java:252)
at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.init(ProcessEngineConfigurationImpl.java:951)
at org.flowable.engine.impl.cfg.ProcessEngineConfigurationImpl.buildProcessEngine(ProcessEngineConfigurationImpl.java:915)
at org.flowable.spring.SpringProcessEngineConfiguration.buildProcessEngine(SpringProcessEngineConfiguration.java:72)
at org.flowable.spring.ProcessEngineFactoryBean.getObject(ProcessEngineFactoryBean.java:60)
at org.flowable.spring.ProcessEngineFactoryBean.getObject(ProcessEngineFactoryBean.java:32)
at org.springframework.beans.factory.support.FactoryBeanRegistrySupport.doGetObjectFromFactoryBean(FactoryBeanRegistrySupport.java:171)
... 59 common frames omitted
flowable并不认识国产数据库,需要修改文件:
在项目中创建org.flowable.common.engine.impl.AbstractEngineConfiguration文件(这边路径必须一致,打包时会覆盖源文件),修改其中getDefaultDatabaseTypeMappings方法,将达梦数据库标识为mysql:
public static Properties getDefaultDatabaseTypeMappings() {
Properties databaseTypeMappings = new Properties();
databaseTypeMappings.setProperty("H2", "h2");
databaseTypeMappings.setProperty("HSQL Database Engine", "hsql");
databaseTypeMappings.setProperty("MySQL", "mysql");
databaseTypeMappings.setProperty("MariaDB", "mysql");
databaseTypeMappings.setProperty("Oracle", "oracle");
databaseTypeMappings.setProperty("PostgreSQL", "postgres");
databaseTypeMappings.setProperty("Microsoft SQL Server", "mssql");
databaseTypeMappings.setProperty("db2", "db2");
databaseTypeMappings.setProperty("DB2", "db2");
***此处省略***
databaseTypeMappings.setProperty("DM DBMS", "mysql");// 加入达梦支持
return databaseTypeMappings;
}
创建flowable数据库
之前配置文件中关闭了数据库自动生成更新,这是因为无论是把数据库标识为 mysql 还是 oracle,都无法自动生成。要么修改源码中的生成语句并原路径覆盖,我这里是找到github上flowable源码中的生成语句直接生成。
源码目录如下:
本项目引入的flowable模块如下:
<!--Flowable工作流-->
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter-process</artifactId>
<version>${flowable.version}</version>
</dependency>
查看了下只需要复制三个模块的语句并修改:
使用IDE工具一键替换一些关键词:
一键删除以下语句:
ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin
一键替换以下关键词:
LONGBLOB ===》 BLOB
auto_increment ===》identity
修改完成后,按顺序执行三个文件,即可生成flowable数据库。
至此,项目应该能正常启动了
使用过程中的一些坑:
报错1:
LINK 在达梦8中为关键词,而flowable中Task.xml中确有用作别名:
#报错相关语句
select LINK.ID_ from ACT_RU_IDENTITYLINK LINK
修改也很简单,在resources目录下,创建同路径文件替换即可
注意:这边和jar中的路径不一样,并非在java目录下,而是resources。我之前替换一直无效,直到下了源码看了结构才发现。