Learn about @GeneratedValue annotation in JPA – Part 2
This tutorial is continued part 1. The next strategy we want to talk is the GenerationType.SEQUENCE strategy You declare this strategy in the Clazz entity as follows:
|
1 2 3 |
@Id @GeneratedValue(strategy = GenerationType.SEQUENCE) private Long id; |
Similar to GenerationType.TABLE strategy, GenerationType.SEQUENCE strategy also depends on the value of “hibernate.id.new.generator_mappings” property in the JPA… Read More




