SpringBoot JPA 创建表大小写问题

小写

org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy

大小写分明

org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl

jpa:
    database: mysql
    show-sql: true
    hibernate:
      ddl-auto: update
      naming:
        physical-strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
    properties:
      hibernate:
        dialect: org.hibernate.dialect.MySQL5Dialect

你可能感兴趣的:(SpringBoot JPA 创建表大小写问题)