본문 바로가기
개발아닌개발/springboot

[JPA] Springboot 3.x 버전 JPA 카멜표기법 변수명 DataBase 내 스네이크 표기법으로 변환

by 불청객 2024. 7. 31.
반응형

application.yml

spring:
  jpa:
    properties:
      hibernate:
        physical_naming_strategy: org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy

 

카멜표기법으로 작성한 변수명이 DataBase(Mysql)상에 소문자+언더바로 변환되어 칼럼명이 저장됨

as-is) apiKey

to-be) api_key

 

 


일부 내용

더보기
spring:
  jpa:
    properties:
      hibernate:
        physical_naming_strategy: org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy
        format_sql: true
        show_sql: true
        default_batch_fetch_size: 500

관련 기타 오류

더보기

cannot resolve class 'springphysicalnamingstrategy'

728x90
반응형

댓글