@NaturalId
@Id
대신 사용할 수 있는 자연키.
unique
해야한다.
@Id
를 인조키로 사용할 때 대체로 사용할 수 있다.
Hibernate
어노테이션이므로 JPA에서 사용할 때는
hiber session
을 통해 조회해야 한 PK 처럼
EntityManager
life cycle 에 반영된다. → 즉,
@Id
로 조회할 때와 동일하게
EntityManager
에 캐시된다.
참고
JPA에서 아이디를 자동증가 값으로 사용 시 하이버네이트의 @NaturalId 사용해 보기 | 우아한형제들 기술블로그
The best way to map a @NaturalId business key with JPA and Hibernate - Vlad Mihalcea
@NaturalId - A good way to persist natural IDs with Hibernate?
Hibernate Natural IDs in Spring Boot | Baeldung