Spring boot2框架适配国产达梦8数据库、国产瀚高数据库

最近项目涉及国产芯片、国产操作系统、国产数据库,总之全套国产化,选型用统信产品序列。就涉及开发框架适配国产数据库的问题:

1、spring boot2框架适配国产达梦8数据库或者瀚高数据库

pom.xml引入dm8的依赖:

java 复制代码
 <!--  达梦数据库驱动  -->
        <dependency>
            <groupId>com.dameng</groupId>
            <artifactId>DmJdbcDriver18</artifactId>
            <version>8.1.2.141</version>
        </dependency>
java 复制代码
  <!--  瀚高数据库驱动  -->
        <!-- https://mvnrepository.com/artifact/com.highgo/HgdbJdbc -->
        <dependency>
            <groupId>com.highgo</groupId>
            <artifactId>HgdbJdbc</artifactId>
            <version>6.2.4</version>
        </dependency>

2、application-dev.yml配置 druid数据源

java 复制代码
# 数据源
spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    druid:
#      driver-class-name: com.mysql.cj.jdbc.Driver
#      username: ${MYSQL_USER:root}
#      password: ${MYSQL_PWD:root}
#      url: jdbc:mysql://${MYSQL_HOST:pigx-mysql}:${MYSQL_PORT:3306}/${MYSQL_DB:pigx_json_flow}?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&allowMultiQueries=true&allowPublicKeyRetrieval=true
#      validation-query: SELECT 1
#      driver-class-name: dm.jdbc.driver.DmDriver
#      username: SYSDBA
#      password: C##qlywadmin2023
#      url: jdbc:dm://127.0.0.1:5236?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
      driver-class-name: com.highgo.jdbc.Driver
      username: highgo
      password: Password@123
      url: jdbc:highgo://localhost:5866/highgo
      validation-query: SELECT 1
      time-between-eviction-runs-millis: 18800
      stat-view-servlet:
        enabled: true
        allow: ""
        url-pattern: /druid/*
      filter:
        stat:
          enabled: true
          log-slow-sql: true
          slow-sql-millis: 10000
          merge-sql: false
      test-while-idle: true
  #        wall:
#          config:
#            multi-statement-allow: true

3、mybatis适配

需要注意的是mysql数据库里的name、level、type等关键字在mapper.xml里是带单引号的,到达梦8或者瀚高数据库里时要去掉。另外瀚高数据库的模糊查询需要用 ::text指明字段类型,否则会报错;按id查询返回一条记录时要用 resultType 指明实体类型,否则回报返回多条错误。

java 复制代码
  <select id="selectByPrimaryKey" parameterType="java.lang.String" resultType="com.xh.lesson.entity.SysDept">
    select 
    <include refid="Base_Column_List" />
    from COMPANY_FRAME.sys_dept
    where id = #{id,jdbcType=VARCHAR}
  </select>
java 复制代码
  <update id="updateRelationCode">
    UPDATE COMPANY_FRAME.sys_dept
    set relation_code=replace(relation_code,#{oldStr}::text,#{newStr}::text)
    where relation_code LIKE CONCAT(#{relationCode}::text,'%')
  </update>

注意了以上3点,基本就避坑了,好了,更新完毕,欢迎一键三连,关注我的微信号 获取更多资讯~

相关推荐
摇滚侠9 分钟前
Spring Boot 3零基础教程,深度理解 Spring Boot 自动配置原理,笔记11
spring boot·笔记·后端
爆更小哇34 分钟前
统一功能处理
java·spring boot
hweiyu004 小时前
Spring Boot 项目集成 Gradle:构建、测试、打包全流程教程
java·spring boot·后端·gradle
一勺菠萝丶4 小时前
Spring Boot 项目启动报错:`Could not resolve type id ... no such class found` 终极解决方案!
java·spring boot·后端
摇滚侠8 小时前
Spring Boot 3零基础教程,IOC容器中组件的注册,笔记08
spring boot·笔记·后端
程序员小凯10 小时前
Spring Boot测试框架详解
java·spring boot·后端
程序员小凯12 小时前
Spring Boot缓存机制详解
spring boot·后端·缓存
程序媛徐师姐13 小时前
Java基于SpringBoot的茶叶商城系统,附源码+文档说明
java·spring boot·java springboot·茶叶商城系统·java茶叶商城系统·茶叶·java茶叶商城
计算机毕业设计木哥15 小时前
计算机毕业设计选题推荐:基于SpringBoot和Vue的快递物流仓库管理系统【源码+文档+调试】
java·vue.js·spring boot·后端·课程设计
Chan1618 小时前
流量安全优化:基于 Sentinel 实现网站流量控制和熔断
java·spring boot·安全·sentinel·intellij-idea·进程