JPA에서 ID 생성 전략에 대해 설명해주세요. #221
Replies: 2 comments
-
ID 생성 전략은
|
Beta Was this translation helpful? Give feedback.
-
직접 할당
자동 할당
public enum GenerationType {
IDENTITY,
SEQUENCE,
UUID,
TABLE,
AUTO
} IDENTITY
SEQUENCE
TABLE
AUTO
|
Beta Was this translation helpful? Give feedback.
-
.
Beta Was this translation helpful? Give feedback.
All reactions