jpa+hibernate整合达梦数据库(附源码)

项目整合后的地址

https://gitee.com/gy297879328/jpa_dmhibernate_dm

jar包引入

jpa+hibernate整合达梦数据库需要引入两个包

  1. 达梦的jdbc驱动
  2. 应用中hibernate版本对应的方言包

jar包在:数据库安装目录下的drivers/jdbc 匹配相对应版本jar包
jpa+hibernate整合达梦数据库(附源码)_第1张图片
jpa+hibernate整合达梦数据库(附源码)_第2张图片

pom文件

  <dependencies>
        <dependency>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-starter-data-jpaartifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.hibernategroupId>
                    <artifactId>hibernate-coreartifactId>
                exclusion>
            exclusions>
        dependency>
			
        <dependency>
            <groupId>com.damenggroupId>
            <artifactId>DmJdbcDriver18artifactId>
            <version>1.0version>
            <scope>systemscope>
            <systemPath>${project.basedir}/lib/DmJdbcDriver18.jarsystemPath>
        dependency>

        <dependency>
            <groupId>com.damenggroupId>
            <artifactId>DmDialect-for-hibernate5.3artifactId>
            <version>1.0version>
            <scope>systemscope>
            <systemPath>${project.basedir}/lib/DmDialect-for-hibernate5.3.jarsystemPath>
        dependency>

        <dependency>
            <groupId>org.hibernategroupId>
            <artifactId>hibernate-coreartifactId>
            <version>5.3.18.Finalversion>
        dependency>
  dependencies>
    

application.properties

spring.datasource.url=jdbc:dm://127.0.0.1:5236
spring.datasource.username=SYSDBA
spring.datasource.password=PASSWORD
spring.datasource.driver-class-name=dm.jdbc.driver.DmDriver


spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.DmDialect
spring.jpa.database-platform=org.hibernate.dialect.DmDialect
## 特别重要与spring.jpa.hibernate.ddl-auto=update适配
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.open-in-view=false

spring.jpa.properties.hibernate.default_schema=SYSDBA
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults = false

Q&A

1. spring.jpa.hibernate.ddl-auto=update 参数报错

报错截图

jpa+hibernate整合达梦数据库(附源码)_第3张图片

原因

  1. hibernate建表时采用默认设置,hibernate会把表名大写统一转换成下划线加小写。
  2. 数据库实例为大小写敏感时,语法问题导致生成的sql语句每次都是新表,启动项目会create table导致重复新建表。

解决办法

第一种:修改hibernate的生成规则,添加相关的配置spring.jpa.hibernate.naming.physicalstrategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
jpa+hibernate整合达梦数据库(附源码)_第4张图片

第二种:升级hibernate-core的版本为5.6.11.Final
jpa+hibernate整合达梦数据库(附源码)_第5张图片

你可能感兴趣的:(达梦数据库,hibernate,数据库,java)