All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.annotations.package-info Maven / Gradle / Ivy

There is a newer version: 6.6.2.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */

/**
 * A set of mapping annotations which extend the O/R mapping annotations defined by JPA.
 * 

* The JPA specification perfectly nails many aspects of the O/R persistence problem, but * here we address some areas where it falls short. * *

Basic types in JPA

*

* A basic type handles the persistence of an attribute of an entity or embeddable * object that is stored in exactly one database column. *

* JPA supports a very limited set of built-in {@linkplain jakarta.persistence.Basic basic} * types. *

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
CategoryPackageTypes
Primitive types{@code boolean}, {@code int}, {@code double}, etc.
Primitive wrappers{@code java.lang}{@code Boolean}, {@code Integer}, {@code Double}, etc.
Strings{@code java.lang}{@code String}
Arbitrary-precision numeric types{@code java.math}{@code BigInteger}, {@code BigDecimal}
Date/time types{@code java.time}{@code LocalDate}, {@code LocalTime}, {@code LocalDateTime}, {@code OffsetDateTime}, {@code Instant}
Deprecated date/time types{@code java.util}{@code Date}, {@code Calendar}
Deprecated JDBC date/time types{@code java.sql}{@code Date}, {@code Time}, {@code Timestamp}
Binary and character arrays{@code byte[]}, {@code char[]}
UUIDs{@code java.util}{@code UUID}
Enumerated typesAny {@code enum}
Serializable typesAny {@code java.io.Serializable}
*

* JPA does provide {@linkplain jakarta.persistence.AttributeConverter converters} as an * extensibility mechanism, but its converters are only useful for classes which have an * equivalent representation as one of the types listed above. * *

Basic value type mappings

*

* By contrast, Hibernate has an embarrassingly rich set of abstractions for modelling * basic types, which can be initially confusing. *

* Note that the venerable interface {@link org.hibernate.type.Type} abstracts over all * sorts of field and property types, not only basic types. In modern Hibernate, programs * should avoid direct use of this interface. *

* Instead, a program should use either a "compositional" basic type, or in more extreme * cases, a {@code UserType}. *

    *
  • * A basic type is a composition of a {@link org.hibernate.type.descriptor.java.JavaType} * with a {@link org.hibernate.type.descriptor.jdbc.JdbcType}, and possibly a JPA * {@link jakarta.persistence.AttributeConverter}, and the process of composition is * usually somewhat implicit. *

      *
    1. * A converter may be selected using the JPA {@link jakarta.persistence.Convert} * annotation, or it may be {@linkplain jakarta.persistence.Converter#autoApply() * applied implicitly}. *

    2. * A {@code JavaType} or {@code JdbcType} may be indicated explicitly * using the following annotations: *

        *
      • {@link org.hibernate.annotations.JavaType} *
      • {@link org.hibernate.annotations.JdbcType} *
      • {@link org.hibernate.annotations.JdbcTypeCode} *
      *
    3. * But these annotation also influence the choice: *

        *
      • {@link jakarta.persistence.Lob} *
      • {@link jakarta.persistence.Enumerated} *
      • {@link jakarta.persistence.Temporal} *
      • {@link org.hibernate.annotations.Nationalized} *
      *
    4. * Furthermore, a {@link org.hibernate.annotations.JavaTypeRegistration} or * {@link org.hibernate.annotations.JdbcTypeRegistration} allows the choice * of {@code JavaType} or {@code JdbcType} to be made implicitly. *

    5. * A compositional type mapping also comes with a * {@link org.hibernate.type.descriptor.java.MutabilityPlan}, which is usually * chosen by the {@code JavaType}, but which may be overridden using the * {@link org.hibernate.annotations.Mutability} annotation. *

    *

    * Note that {@link org.hibernate.annotations.JavaType}, {@link org.hibernate.annotations.JdbcType}, * {@link org.hibernate.annotations.JdbcTypeCode} and {@link org.hibernate.annotations.Mutability} * all come in specialized flavors for handling map keys, list indexes, and so on. *

  • * Alternatively, a program may implement the {@link org.hibernate.usertype.UserType} * interface and associate it with a field or property *

      *
    • explicitly, using the {@link org.hibernate.annotations.Type @Type} annotation, * or *
    • implicitly, using the {@link org.hibernate.annotations.TypeRegistration @TypeRegistration} * annotation. *
    *

    * There are some specialized flavors of the {@code @Type} annotation too. *

*

* These two approaches cannot be used together. A {@code UserType} always takes precedence * over the compositional approach. *

* All the typing annotations just mentioned may be used as meta-annotations. That is, * it's possible to define a new typing annotation like this: *

 * @JavaType(ThingJavaType.class)
 * @JdbcTypeCode(JSON)
 * @Target({METHOD, FIELD})
 * @Retention(RUNTIME)
 * public @interface JsonThing {}
 * 
* The annotation may then be applied to fields and properties of entities and embeddable * objects: *
 * @JsonThing Thing myThing;
 * 
* The packages {@link org.hibernate.type.descriptor.java} and * {@link org.hibernate.type.descriptor.jdbc} contain the built-in implementations of * {@code JavaType} and {@code JdbcType}, respectively. *

* See the User Guide or the package {@link org.hibernate.type} for further * discussion. * *

Composite types

* * A composite type is a type which maps to multiple columns. An example of a * composite type is an {@linkplain jakarta.persistence.Embeddable embeddable} object, * but this is not the only sort of composite type in Hibernate. *

* A program may implement the {@link org.hibernate.usertype.CompositeUserType} * interface and associate it with a field or property: *

    *
  • explicitly, using the {@link org.hibernate.annotations.CompositeType @CompositeType} * annotation, or *
  • implicitly, using the {@link org.hibernate.annotations.CompositeTypeRegistration @CompositeTypeRegistration} * annotation. *
* *

Second level cache

*

* When we make a decision to store an entity in the second-level cache, we must decide * much more than just whether "to cache or not to cache". Among other considerations: *

    *
  • we must assign cache management policies like an expiry timeout, whether to use * FIFO-based eviction, whether cached items may be serialized to disk, and *
  • we must also take great care in specifying how * {@linkplain org.hibernate.annotations.CacheConcurrencyStrategy concurrent access} * to cached items is managed. *
*

* In a multi-user system, these policies always depend quite sensitively on the nature * of the given entity type, and cannot reasonably be fixed at a more global level. *

* With all the above considerations in mind, we strongly recommend the use of the * Hibernate-defined annotation {@link org.hibernate.annotations.Cache} to assign * entities to the second-level cache. *

* The JPA-defined {@link jakarta.persistence.Cacheable} annotation is almost useless * to us, since: *

    *
  • it provides no way to specify any information about the nature of the how * cached entity and how its cache should be managed, and *
  • it may not be used to annotate associations. *
*

* As an aside, the {@link jakarta.persistence.SharedCacheMode} enumeration is even worse: * its only sensible values are {@code NONE} and {@code ENABLE_SELECTIVE}. The options * {@code ALL} and {@code DISABLE_SELECTIVE} fit extremely poorly with the practices * advocated above. * *

Generated values

*

* JPA supports {@linkplain jakarta.persistence.GeneratedValue generated} identifiers, * that is, surrogate primary keys, with four useful built-in * {@linkplain jakarta.persistence.GenerationType types} of id generation. *

* In JPA, an id generator is identified on the basis of a stringly-typed name, and * this provides a reasonably natural way to integrate * {@linkplain org.hibernate.annotations.GenericGenerator custom generators}. *

* JPA does not define any way to generate the values of other fields or properties * of the entity. *

* Hibernate 6 takes a different route, which is both more typesafe, and much more * extensible. *

    *
  1. The interfaces {@link org.hibernate.generator.BeforeExecutionGenerator} * and {@link org.hibernate.generator.OnExecutionGenerator} provide an extremely * open-ended way to incorporate custom generators. *
  2. The meta-annotations {@link org.hibernate.annotations.IdGeneratorType} and * {@link org.hibernate.annotations.ValueGenerationType} may be used to associate * a generator with a user-defined annotation. This annotation is an indirection * between the generator itself, and the persistent attributes it generates. *
  3. This generator annotation may then by used to annotate {@code @Id} * attributes, {@code @Version} attributes, and other {@code @Basic} attributes to * specify how their values are generated. *
*

* This package includes a number built-in generator annotations, including * {@link org.hibernate.annotations.UuidGenerator}, * {@link org.hibernate.annotations.CurrentTimestamp}, * {@link org.hibernate.annotations.TenantId}, * {@link org.hibernate.annotations.Generated}, and * {@link org.hibernate.annotations.GeneratedColumn}. * *

Natural ids

*

* The use of surrogate keys is highly recommended, making it much easier to evolve * a database schema over time. But every entity should also have a "natural" unique * key: a subset of fields which, taken together, uniquely identify an instance of * the entity in the business or scientific domain. *

* The {@link org.hibernate.annotations.NaturalId} annotation is used to identify * the natural key of an entity, and urge its use. *

* The {@link org.hibernate.annotations.NaturalIdCache} annotation enables the use * of the second-level cache for when an entity is loaded by natural id. Retrieval * by natural id is a very common thing to do, and so the cache can often be helpful. * *

Filters

*

* Filters are an extremely powerful feature of Hibernate, allowing the definition of * parameterized families of filtered "views" of the domain data. They're also easy * to use, with the minor caveat that they require the developer to express filtering * expressions in native SQL. *

    *
  • The {@link org.hibernate.annotations.FilterDef} annotation defines a named * filter, declares its parameters, and might specify a filtering expression * used by default. There should be exactly one of these annotations per filter * name. *
  • The {@link org.hibernate.annotations.Filter} annotation is used to identify * which entities and associations are affected by the filter, and provide a * more specific filtering condition. *
*

* Note that a filter has no affect unless it is * {@linkplain org.hibernate.Session#enableFilter(java.lang.String) enabled} in a * particular session. * *

Optimistic locking

* * JPA defines the {@link jakarta.persistence.Version} annotation for optimistic * locking based on an integral version number or {@link java.sql.Timestamp}. * Hibernate allows this annotation to be used with other datetime types including * {@link java.time.Instant}. *

* A field may be explicitly excluded from optimistic lock checking using * {@link org.hibernate.annotations.OptimisticLock @OptimisticLock(excluded=true)}. *

* This standard JPA approach is the recommended approach when working with a * newly-designed database schema. But when working with a legacy database with * tables having no version or update timestamp column, an alternative approach is * supported: *

    *
  • {@link org.hibernate.annotations.OptimisticLockType#ALL @OptimisticLocking(ALL)} * specifies that optimistic lock checking should be done by comparing the values * of all columns, and *
  • {@link org.hibernate.annotations.OptimisticLockType#DIRTY @OptimisticLocking(DIRTY)} * specifies that optimistic lock checking should be done by checking the values * of only the columns which are being set to new values. *
*

* For more detail, see {@link org.hibernate.annotations.OptimisticLocking}. * *

Dialect-specific native SQL

*

* Many annotations in this package allow the specification of native SQL expressions or * even complete statements. For example: *

    *
  • {@link org.hibernate.annotations.Formula} allows a field or property to map to an * arbitrary SQL expression instead of a column, *
  • {@link org.hibernate.annotations.Check} specifies a check constraint condition, *
  • {@link org.hibernate.annotations.ColumnDefault} specifies a default value, and * {@link org.hibernate.annotations.GeneratedColumn} specifies a generated value, *
  • {@link org.hibernate.annotations.Filter} and {@link org.hibernate.annotations.Where} * each specify a restriction written in SQL, *
  • {@link org.hibernate.annotations.OrderBy} specifies an ordering written in SQL, and *
  • {@link org.hibernate.annotations.SQLUpdate}, {@link org.hibernate.annotations.SQLInsert}, * and {@link org.hibernate.annotations.SQLDelete} allow a whole handwritten SQL statement * to be given in place of the SQL generated by Hibernate. *
*

* A major disadvantage to annotation-based mappings for programs which target multiple databases * is that there can be only one source of metadata which must work on every supported database. * Fortunately, there's a—slightly inelegant—solution. *

* The annotations belonging to {@link org.hibernate.annotations.DialectOverride} allow native * SQL to be overridden for a particular {@linkplain org.hibernate.dialect.Dialect SQL dialect}. * For example {@link org.hibernate.annotations.DialectOverride.Formula @DialectOverride.Formula} * may be used to customize a {@link org.hibernate.annotations.Formula @Formula} for a given version * of a given database. */ package org.hibernate.annotations;





© 2015 - 2024 Weber Informatics LLC | Privacy Policy