Oracle
 sql >> Database >  >> RDS >> Oracle

Ibernazione e sequenza Oracle

Dovresti impostare allocationSize a 1

@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "student_id_seq")
@SequenceGenerator(name = "student_id_seq", 
                   sequenceName = "Student_seq",
                   allocationSize = 1)  

Puoi leggere di più nella documentazione SequenceGenerator doc