本文内容来自YashanDB官网,原文内容请见 https://www.yashandb.com/newsinfo/7281300.html?templateId=1718516
问题:
较早版本mybatis-plus识别数据库类型是通过jdbc url识别的,访问崖山数据库就会出现报数据库类型不支持的错误:java.lang.IllegalStateException: dbType not support : null, url jdbc:jdbc:yasdb://192.168.0.1:1688/yashandb
解决办法:
增加数据类型配置
1、application.yml格式配置文件
mybatis-plus全局数据库类型配置
mybatis-plus:
global-config:
db-config:db-type: oracle
增加分页插件pagehelper的数据库模式配置
pagehelper:
helperDialect: oracle
2、application.properties格式配置文件
mybatis-plus全局数据库类型配置
mybatis-plus.global-config.db-config.db-type=oracle
增加分页插件pagehelper的数据库模式配置
pagehelper.helperDialect=oracle