[Spring Boot/JPA] globally_quoted_identifiers와 네이밍 전략 이슈
MySQL 예약어 충돌을 회피하기 위해 테이블명이나 컬럼명을 항상 따옴표로 감싸주게끔 globally_quoted_identifiers 옵션을 true로 설정하고 있다. 그리고 동시에 camelCase인 이름들을 snake_case로 바꾸기 위해 PhysicalNamingStrategySnakeCaseImpl 네이밍 전략을 사용하고 있다. application.yaml 설정:spring: jpa: properties: hibernate: globally_quoted_identifiers: true hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingSt..