Annotation Interface GeneratedValue


@Target({METHOD,FIELD}) @Retention(RUNTIME) public @interface GeneratedValue
Specifies a generation strategy for generated primary keys.

The GeneratedValue annotation may be applied to a primary key property or field of an entity or mapped superclass in conjunction with the Id annotation. The persistence provider is only required to support the GeneratedValue for simple primary keys. Use of the GeneratedValue annotation for derived primary keys is not supported.

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: