JPA中自动使用@Table(name = "userTab")后自动将表名列名添加了下划线的问题

Posted songxingzhu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JPA中自动使用@Table(name = "userTab")后自动将表名列名添加了下划线的问题相关的知识,希望对你有一定的参考价值。

一、问题

  JPA中自动使用@Table(name = "userTab")后自动将表名、列名添加了下划线的问题,如下图:

  技术分享图片技术分享图片

 

 二、解决

  在application.properties文件中加入:

spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

  如:

#连接字符串
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://172.16.4.203:3306/unicomcmpdb?characterEncoding=utf8&useUnicode=true&useSSL=false&serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=123456
spring.jpa.show-sql=true
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
spring.datasource.platform=org.hibernate.dialect.MySQL57Dialect
spring.jooq.sql-dialect=org.hibernate.dialect.MySQL57Dialect

#初始化数据
spring.datasource.schema=classpath:schema.sql
spring.datasource.data=classpath:data.sql
spring.datasource.sql-script-encoding=utf-8
spring.datasource.initialization-mode=ALWAYS
spring.datasource.continue-on-error=true
#数据表命名下划线问题
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

 三、效果

技术分享图片

 

  

以上是关于JPA中自动使用@Table(name = "userTab")后自动将表名列名添加了下划线的问题的主要内容,如果未能解决你的问题,请参考以下文章

JPA 实体映射

使用 JPA 时,@Entity 和 @Table 中的 name 参数有啥区别?

在 HSQLDB 上使用 JPA2 自动生成身份的问题

求教!jpa主键自动生成策略的相关问题!

JPA 仅使用 PK 持久化

使用DBeaver自动生成ER图