Package jakarta.persistence
Annotation Type GeneratedValue
- 
 @Target({METHOD,FIELD}) @Retention(RUNTIME) public @interface GeneratedValue Provides for the specification of generation strategies for the values of primary keys.The GeneratedValueannotation may be applied to a primary key property or field of an entity or mapped superclass in conjunction with theIdannotation. The use of theGeneratedValueannotation is only required to be supported for simple primary keys. Use of theGeneratedValueannotation is not supported for derived primary keys.Example 1: @Id @GeneratedValue(strategy=SEQUENCE, generator="CUST_SEQ") @Column(name="CUST_ID") public Long getId() { return id; } Example 2: @Id @GeneratedValue(strategy=TABLE, generator="CUST_GEN") @Column(name="CUST_ID") Long id;- Since:
- 1.0
- See Also:
- Id,- TableGenerator,- SequenceGenerator
 
- 
- 
Optional Element SummaryOptional Elements Modifier and Type Optional Element Description Stringgenerator(Optional) The name of the primary key generator to use as specified in theSequenceGeneratororTableGeneratorannotation.GenerationTypestrategy(Optional) The primary key generation strategy that the persistence provider must use to generate the annotated entity primary key.
 
- 
- 
- 
Element Detail- 
strategyGenerationType strategy (Optional) The primary key generation strategy that the persistence provider must use to generate the annotated entity primary key.- Default:
- jakarta.persistence.GenerationType.AUTO
 
 
- 
 - 
- 
generatorString generator (Optional) The name of the primary key generator to use as specified in theSequenceGeneratororTableGeneratorannotation.Defaults to the id generator supplied by persistence provider. - Default:
- ""
 
 
- 
 
-