springboot–jpa连接达梦数据库
读取插入指定模式下的数据库表格时
1.先在达梦上创建新用户,创建用户成功后会自动创建与该用户同名的模式名。
2.在配置springboot的配置文件时,在jpa的配置下,配置上default_schema,路径为jpa->properties->hibernate->default_schema,值为要访问的具体的模式的名称
datasource:
url: jdbc:dm://{ip}:{host}/{schema}?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
username: xxxx
password: xxxx
driver-class-name: dm.jdbc.driver.DmDriver
type: com.alibaba.druid.pool.DruidDataSource
jpa:
show-sql: true
# generate-ddl: true
hibernate:
# ddl-auto: update
ddl-auto: none
naming:
physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
properties:
hibernate:
enable_lazy_load_no_trans: true
default_schema: TEST
- 为了避免一些莫名其妙的问题,创建的表名以及字段名都采用大写的模式。