Package org.hibernate.annotations
Annotation Type IdGeneratorType
-
@Target(ANNOTATION_TYPE) @Retention(RUNTIME) public @interface IdGeneratorType
Meta-annotation used to mark another annotation as providing configuration for a custom identifier generator. This is the best way to work with customized identifier generation in Hibernate.For example, if we have a custom identifier generator:
public class CustomSequenceGenerator implements BeforeExecutionGenerator { public CustomSequenceGenerator(CustomSequence config, Member annotatedMember, CustomIdGeneratorCreationContext context) { ... } ... }Then we may also define an annotation which associates this generator with an entity and supplies configuration parameters:
@IdGeneratorType(CustomSequenceGenerator.class) @Retention(RUNTIME) @Target({METHOD,FIELD}) public @interface CustomSequence { String name(); int startWith() default 1; int incrementBy() default 50; }and we may use it as follows:
@Id @CustomSequence(name = "mysequence", startWith = 0) private Integer id;
We did not use the JPA-defined
GeneratedValuehere, since that API is designed around the use of stringly-typed names. The@CustomSequenceannotation itself implies thatidis a generated value.An id generator annotation may have members, which are used to configure the id generator, if either:
- the id generator implements
AnnotationBasedGenerator, or - the id generator class has a constructor with the same signature as
AnnotationBasedGenerator.initialize(A, java.lang.reflect.Member, org.hibernate.generator.GeneratorCreationContext).
For a more complete example, see the annotation
UuidGeneratorand the corresponding generator classUuidGenerator.A
@IdGeneratorTypeannotation must have retention policyRetentionPolicy.RUNTIME.- Since:
- 6.0
- See Also:
Generator,AnnotationBasedGenerator
- the id generator implements