You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
두 번째 방법으로, JPA에서 테이블 및 컬럼 이름 매핑
JPA에서는 @table 및 @column 어노테이션을 사용해 PostgreSQL에 맞는 이름을 명시적으로 매핑가능. 이렇게 하면 엔티티 클래스의 필드가 카멜케이스여도, 실제 데이터베이스에서는 소문자로 자동 매핑.
즉, 코딩은 가독성이 좋은 카멜케이스로 진행하되, DB에는 소문자로 테이블과 컬럼들이 전달됨.
The text was updated successfully, but these errors were encountered: