diff --git a/hibernate-core/src/main/javadoc/overview.html b/hibernate-core/src/main/javadoc/overview.html index a1cd269ca3..fa692b4901 100644 --- a/hibernate-core/src/main/javadoc/overview.html +++ b/hibernate-core/src/main/javadoc/overview.html @@ -19,11 +19,14 @@
  • an implementation of the Java (or Jakarta) Persistence API (JPA), where the equivalent central interfaces are {@link jakarta.persistence.EntityManagerFactory} - and {@link jakarta.persistence.EntityManager}, and + and {@link jakarta.persistence.EntityManager},
  • a set of mapping annotations which augment the O/R mapping annotations defined - by JPA, and which may be used with either API. + by JPA, and which may be used with either API, and +
  • +
  • + compile-time tooling for writing more type-safe code.
  • @@ -69,6 +72,13 @@ {@linkplain org.hibernate.jpa.HibernateHints Hibernate-defined} hint, at the cost of a loss of type-safety.

    +

    + These packages define additional extensions to the JPA APIs: +

    +

    Mapping annotations

    @@ -106,6 +116,16 @@ mappings as an alternative. +

    Annotations driving compile-time tooling

    + +

    + The annotations defined by {@link org.hibernate.annotations.processing} instruct the Metamodel + Generator to {@linkplain org.hibernate.annotations.processing.CheckHQL validate HQL at compile + time}, and to automatically generate the implementation of + {@linkplain org.hibernate.annotations.processing.Find finder methods} and + {@linkplain org.hibernate.annotations.processing.HQL query methods}. +

    +

    Bootstrapping Hibernate

    diff --git a/release/src/release/javadoc/overview.html b/release/src/release/javadoc/overview.html index 543e1b6175..0cdf87796e 100644 --- a/release/src/release/javadoc/overview.html +++ b/release/src/release/javadoc/overview.html @@ -19,11 +19,14 @@

  • an implementation of the Java (or Jakarta) Persistence API (JPA), where the equivalent central interfaces are {@link jakarta.persistence.EntityManagerFactory} - and {@link jakarta.persistence.EntityManager}, and + and {@link jakarta.persistence.EntityManager},
  • a set of mapping annotations which augment the O/R mapping annotations defined - by JPA, and which may be used with either API. + by JPA, and which may be used with either API, and +
  • +
  • + compile-time tooling for writing more type-safe code.
  • @@ -69,7 +72,13 @@ {@linkplain org.hibernate.jpa.HibernateHints Hibernate-defined} hint, at the cost of a loss of type-safety.

    - +

    + These packages define additional extensions to the JPA APIs: +

    +

    Mapping annotations

    @@ -143,6 +152,16 @@ mappings as an alternative. to use a tiny handful of them.

    +

    Annotations driving compile-time tooling

    + +

    + The annotations defined by {@link org.hibernate.annotations.processing} instruct the Metamodel + Generator to {@linkplain org.hibernate.annotations.processing.CheckHQL validate HQL at compile + time}, and to automatically generate the implementation of + {@linkplain org.hibernate.annotations.processing.Find finder methods} and + {@linkplain org.hibernate.annotations.processing.HQL query methods}. +

    +

    Popular extension points