Package org.hibernate.annotations
Annotation Type JdbcTypeRegistration
-
@Target({PACKAGE,TYPE}) @Inherited @Retention(RUNTIME) @Repeatable(JdbcTypeRegistrations.class) public @interface JdbcTypeRegistration
Describes a SqlTypeDescriptor to be added to theJdbcTypeRegistry
Registrations applied to a package are processed before Hibernate begins to process any attributes, etc. Registrations applied to a class are only applied once Hibernate begins to process that class; it will also affect all future processing. However, it will not change previous resolutions to use this newly registered one. Because of this randomness it is recommended to only apply registrations to packages or to use aTypeContributor
.- Since:
- 6.0
- See Also:
TypeContributor
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description int
registrationCode
The type-code under which to register this descriptor.
-
-
-
-
registrationCode
int registrationCode
The type-code under which to register this descriptor. Can either add a new descriptor or override an existing one. By default we will useJdbcType.getJdbcTypeCode()
- Default:
- -2147483648
-
-