728x90
반응형
Jpa, Oracle Sequence 사용하기
- Oracle 의 Sequence 를 이용해 PK 자동 증가시키기.
- 아래와 같이 하면 INSERT 시 자동으로 SEQUENCE 를 사용해서 처리한다.
// Sequence 는 미리 생성되있어야 한다.
@Id
@GeneratedValue(strategy=GenerationType.SEQUENCE, generator = "xxx_SEQUENCE_GENERATOR")
@SequenceGenerator(name="xxx_SEQUENCE_GENERATOR", sequenceName = "xxx_SEQUENCE", initialValue = 1, allocationSize = 1)
private long xxxSeqNo;
'Jpa' 카테고리의 다른 글
spring-boot Jpa 복합키 설정 Embedded (0) | 2020.09.06 |
---|---|
spring boot, jpa save 동작 원리 (merge, persist) (0) | 2020.07.25 |
spring-boot, Jpa 정리 - Transaction 묶음 (0) | 2020.07.11 |
spring-boot, Jpa 정리 - Integrate test (Jpa 통합 테스트) (0) | 2020.07.11 |
spring-boot, Jpa 정리 - Insert, Update bulk 처리 (0) | 2020.07.11 |
댓글