Hibernate ORM Aggregated Javadoc

Hibernate is a library for object/relation mapping (ORM). It provides:
  • a native API centered around SessionFactory and Session,
  • an implementation of the Java (or Jakarta) Persistence API (JPA), where the equivalent central interfaces are EntityManagerFactory and EntityManager, and
  • a set of mapping annotations which augment the O/R mapping annotations defined by JPA, and which may be used with either API.

Native API

Along with SessionFactory and Session, applications using the native API will often make use of the following interfaces:

JPA

The JPA interfaces are defined by the JPA specification. For details see the latest specification along with the API documentation for the package jakarta.persistence.

Note that since Hibernate 5.2, the native API extends the JPA API rather than wrapping it (for example,SessionFactory extends EntityManagerFactory).

Mapping annotations

The mapping annotations defined by the JPA specification provide a foundation for expressing object/relational mappings in Hibernate and other JPA implementations. The annotations in the package org.hibernate.annotations extend this foundation and accommodate more specialized requirements. These annotation are not tied to the native API, and may be used in conjunction with the JPA API. The full power of Hibernate can only be unlocked via judicious use of these extra annotations.

Note about package categories

Hibernate categorizes packages into a number of groups based on intended consumers:
  • API - classes to which application code will generally bind directly. These are generally classes which do not have spi nor internal in their package path and are not under the package org.hibernate.testing.
  • SPI - classes to which integrator developers will commonly bind directly in order to develop extensions to Hibernate, or to alter its behavior in some way. These are generally under packages with spi in the package path.
  • Testing Support - classes from the hibernate-testing artifact used in building Hibernate test cases. These are classes under the package org.hibernate.testing.

Complete Hibernate documentation may be found online at http://hibernate.org/orm/documentation/.
Packages 
Package Description
org.hibernate
This package defines the central Hibernate APIs, beginning with Session and SessionFactory.
org.hibernate.action.internal
Internals for action processing.
org.hibernate.action.spi
Defines SPI hooks into the ActionQueue, mainly for registering custom AfterTransactionCompletionProcess and BeforeTransactionCompletionProcess hooks.
org.hibernate.agroal.internal
Implementation of ConnectionProvider using Agroal.
org.hibernate.annotations
A set of mapping annotations which extend the O/R mapping annotations defined by JPA.
org.hibernate.binder
This package defines an easy way to extend Hibernate with user-defined annotations that define customized O/R mappings of annotated entity attributes.
org.hibernate.binder.internal  
org.hibernate.boot
This package contains the contracts that make up the bootstrap API for Hibernate.
org.hibernate.boot.archive.internal
The internals of archive scanning support
org.hibernate.boot.archive.scan.internal  
org.hibernate.boot.archive.scan.spi  
org.hibernate.boot.archive.spi  
org.hibernate.boot.beanvalidation
Support for integrating Jakarta Bean Validation
org.hibernate.boot.cfgxml.internal  
org.hibernate.boot.cfgxml.spi  
org.hibernate.boot.internal  
org.hibernate.boot.jaxb
JAXB support for orm.xml and hbm.xml mapping files
org.hibernate.boot.jaxb.cfg.spi  
org.hibernate.boot.jaxb.hbm.internal
JAXB details.
org.hibernate.boot.jaxb.hbm.spi  
org.hibernate.boot.jaxb.hbm.transform  
org.hibernate.boot.jaxb.internal  
org.hibernate.boot.jaxb.internal.stax
Contains basic support for Java XML Processing (JAXP) via Streaming API for XML (StAX)
org.hibernate.boot.jaxb.mapping  
org.hibernate.boot.jaxb.mapping.marshall  
org.hibernate.boot.jaxb.spi  
org.hibernate.boot.model
Package defining Hibernate's boot-time metamodel, which is an understanding of the application's domain model (its entities, attributes, etc.) and the mapping of those "domain model parts" to the database.
org.hibernate.boot.model.convert.internal  
org.hibernate.boot.model.convert.spi  
org.hibernate.boot.model.internal  
org.hibernate.boot.model.naming
Represents a proposed new approach to allowing hooks into the process of determining the name of database objects (tables, columns, constraints, etc).
org.hibernate.boot.model.process.internal  
org.hibernate.boot.model.process.spi  
org.hibernate.boot.model.relational  
org.hibernate.boot.model.relational.internal  
org.hibernate.boot.model.source.internal  
org.hibernate.boot.model.source.internal.annotations  
org.hibernate.boot.model.source.internal.hbm  
org.hibernate.boot.model.source.spi  
org.hibernate.boot.query
Support for handling named queries during the bootstrap process.
org.hibernate.boot.registry
Defines service registry contracts application are likely to want to utilize for configuring Hibernate behavior.
org.hibernate.boot.registry.classloading.internal
The class loading service internals.
org.hibernate.boot.registry.classloading.spi
The class loading service SPI.
org.hibernate.boot.registry.internal
The internals for building service registries.
org.hibernate.boot.registry.selector
Defines a feature-set around named registration of implementations of various contracts and the ability to select those implementations.
org.hibernate.boot.registry.selector.internal
Internals for building StrategySelector
org.hibernate.boot.registry.selector.spi
Defines actual contract used for strategy selection : StrategySelector.
org.hibernate.boot.spi  
org.hibernate.boot.xsd
Support for XSD handling
org.hibernate.bytecode
This package defines an SPI for integrating bytecode libraries with Hibernate.
org.hibernate.bytecode.enhance.internal.bytebuddy
package containing bytecode enhancement code (internals)
org.hibernate.bytecode.enhance.internal.tracker
specialized classes to keep track of changes
org.hibernate.bytecode.enhance.spi
package defining bytecode code enhancement (instrumentation) support.
org.hibernate.bytecode.enhance.spi.interceptor
interceptor implementations
org.hibernate.bytecode.internal  
org.hibernate.bytecode.internal.bytebuddy
Byte Buddy support internals
org.hibernate.bytecode.internal.none  
org.hibernate.bytecode.spi
Package defining bytecode code enhancement (instrumentation) support.
org.hibernate.c3p0.internal
Implementation of ConnectionProvider using the c3p0 Connection pool.
org.hibernate.cache
This package defines the API of the second-level cache service.
org.hibernate.cache.cfg.internal  
org.hibernate.cache.cfg.spi  
org.hibernate.cache.internal
Internal implementations and support for second-level caching.
org.hibernate.cache.jcache
Hibernate caching provider for JSR-107 compliant caches.
org.hibernate.cache.jcache.internal  
org.hibernate.cache.spi
Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.
org.hibernate.cache.spi.access
Defines contracts for transactional and concurrent access to cached entity and collection data.
org.hibernate.cache.spi.entry
This package defines formats for disassembled state kept in the second level cache.
org.hibernate.cache.spi.support
Package intended for simplifying the worked needed to implement a caching provider.
org.hibernate.cfg
This package defines APIs for configuring Hibernate.
org.hibernate.classic
This package historically provided backward-compatibility with Hibernate 2.1 APIs which were deprecated in Hibernate 3.
org.hibernate.collection.internal
Internal implementations and support for persistent collections
org.hibernate.collection.spi
SPI definitions for persistent collections.
org.hibernate.context
Contains SPIs which define: the notion of a context-bound or "current" session, and the notion of a "current" tenant id.
org.hibernate.context.internal
Internal implementations and support around "current session" handling.
org.hibernate.context.spi
SPI-level contracts around "current session" and "current tenant" support.
org.hibernate.dialect
This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.
org.hibernate.dialect.aggregate  
org.hibernate.dialect.function
Contains implementations of SqmFunctionDescriptor describing a range of relatively-sophisticated SQL functions available in various dialects.
org.hibernate.dialect.hint  
org.hibernate.dialect.identity  
org.hibernate.dialect.lock
Support for Dialect-specific locking strategies
org.hibernate.dialect.pagination
Support for Dialect-specific pagination strategies
org.hibernate.dialect.sequence  
org.hibernate.dialect.temptable  
org.hibernate.dialect.unique
Support for Dialect-specific unique constraint definition
org.hibernate.engine
This package contains classes which are "shared" by other packages, and implementations of some key algorithms.
org.hibernate.engine.config.internal
Internal support for the configuration service implementation
org.hibernate.engine.config.spi
SPI Package for the configuration service.
org.hibernate.engine.internal
Support for many of the internal workings of Hibernate.
org.hibernate.engine.jdbc
Support for various aspects of JDBC interaction
org.hibernate.engine.jdbc.batch  
org.hibernate.engine.jdbc.batch.internal
Internals for JDBC batching support.
org.hibernate.engine.jdbc.batch.spi
Defines contracts for JDBC batching support.
org.hibernate.engine.jdbc.connections.internal
Internals for accessing JDBC Connections
org.hibernate.engine.jdbc.connections.spi
Defines contracts for accessing JDBC Connections
org.hibernate.engine.jdbc.cursor.internal
Internals for JDBC REF_CURSOR support.
org.hibernate.engine.jdbc.cursor.spi
Defines contracts for JDBC REF_CURSOR support.
org.hibernate.engine.jdbc.dialect.internal
Internal support for Dialect resolution (from JDBC metadata) and Dialect building.
org.hibernate.engine.jdbc.dialect.spi
Contracts supporting Dialect resolution (from JDBC metadata) and Dialect building.
org.hibernate.engine.jdbc.env.internal  
org.hibernate.engine.jdbc.env.spi  
org.hibernate.engine.jdbc.internal
Internals for supporting various aspects of JDBC interaction
org.hibernate.engine.jdbc.mutation
Package defining support for performing mutation SQL (INSERT, UPDATE, DELETE) against an entity or collection
org.hibernate.engine.jdbc.mutation.group  
org.hibernate.engine.jdbc.mutation.internal  
org.hibernate.engine.jdbc.mutation.spi  
org.hibernate.engine.jdbc.spi
SPI contracts for supporting various aspects of JDBC interaction
org.hibernate.engine.jndi
Support for JNDI within Hibernate
org.hibernate.engine.jndi.internal
Internal contracts defining the JNDI support within Hibernate
org.hibernate.engine.jndi.spi
The SPI contracts for Hibernate JNDI support
org.hibernate.engine.profile
Models the fetch profiles defined by the application
org.hibernate.engine.query  
org.hibernate.engine.query.internal  
org.hibernate.engine.query.spi
Defines support for query plans and stored metadata about queries
org.hibernate.engine.spi  
org.hibernate.engine.transaction.internal  
org.hibernate.engine.transaction.internal.jta  
org.hibernate.engine.transaction.jta.platform.internal  
org.hibernate.engine.transaction.jta.platform.spi  
org.hibernate.engine.transaction.spi  
org.hibernate.envers  
org.hibernate.envers.boot  
org.hibernate.envers.boot.internal  
org.hibernate.envers.boot.model  
org.hibernate.envers.boot.registry.classloading  
org.hibernate.envers.boot.spi  
org.hibernate.envers.configuration  
org.hibernate.envers.configuration.internal  
org.hibernate.envers.configuration.internal.metadata  
org.hibernate.envers.configuration.internal.metadata.reader  
org.hibernate.envers.enhanced  
org.hibernate.envers.event.spi  
org.hibernate.envers.exception  
org.hibernate.envers.function  
org.hibernate.envers.internal  
org.hibernate.envers.internal.entities  
org.hibernate.envers.internal.entities.mapper  
org.hibernate.envers.internal.entities.mapper.id  
org.hibernate.envers.internal.entities.mapper.relation  
org.hibernate.envers.internal.entities.mapper.relation.component  
org.hibernate.envers.internal.entities.mapper.relation.lazy  
org.hibernate.envers.internal.entities.mapper.relation.lazy.initializor  
org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy  
org.hibernate.envers.internal.entities.mapper.relation.query  
org.hibernate.envers.internal.reader  
org.hibernate.envers.internal.revisioninfo  
org.hibernate.envers.internal.synchronization  
org.hibernate.envers.internal.synchronization.work  
org.hibernate.envers.internal.tools  
org.hibernate.envers.internal.tools.graph  
org.hibernate.envers.internal.tools.query  
org.hibernate.envers.query  
org.hibernate.envers.query.criteria  
org.hibernate.envers.query.criteria.internal  
org.hibernate.envers.query.internal.impl  
org.hibernate.envers.query.internal.property  
org.hibernate.envers.query.order  
org.hibernate.envers.query.order.internal  
org.hibernate.envers.query.projection  
org.hibernate.envers.query.projection.internal  
org.hibernate.envers.strategy  
org.hibernate.envers.strategy.internal  
org.hibernate.envers.strategy.spi  
org.hibernate.envers.tools  
org.hibernate.event.internal
This package defines a default set of event listeners that implement the default behaviors of Hibernate session operations.
org.hibernate.event.service.internal  
org.hibernate.event.service.spi  
org.hibernate.event.spi  
org.hibernate.exception
Defines certain very important flavors of JDBCException, along with an SPI for interpreting product-specific SQLExceptions arising from a JDBC driver into something more uniform and meaningful.
org.hibernate.exception.internal  
org.hibernate.exception.spi
An SPI for Dialect-specific exception interpretation and conversion.
org.hibernate.generator
This package defines an abstraction over all kinds of automatic value generation, including id generation and version number generation.
org.hibernate.generator.internal  
org.hibernate.grammars.graph  
org.hibernate.grammars.hql  
org.hibernate.grammars.importsql  
org.hibernate.grammars.ordering  
org.hibernate.graph
Implements and extends the JPA-defined entity graph API.
org.hibernate.graph.internal  
org.hibernate.graph.internal.parse  
org.hibernate.graph.spi  
org.hibernate.hikaricp.internal
Implementation of ConnectionProvider using HikariCP.
org.hibernate.id
This package contains the built-in id generators, all of which implement IdentifierGenerator or PostInsertIdentifierGenerator.
org.hibernate.id.enhanced
Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configuration
org.hibernate.id.factory  
org.hibernate.id.factory.internal  
org.hibernate.id.factory.spi  
org.hibernate.id.insert  
org.hibernate.id.uuid  
org.hibernate.integrator.internal  
org.hibernate.integrator.spi  
org.hibernate.internal
An internal package containing implementations of central Hibernate APIs, mostly defined in org.hibernate.
org.hibernate.internal.build  
org.hibernate.internal.log  
org.hibernate.internal.util
Internal utility classes
org.hibernate.internal.util.beans  
org.hibernate.internal.util.collections  
org.hibernate.internal.util.compare  
org.hibernate.internal.util.config  
org.hibernate.internal.util.io  
org.hibernate.internal.util.securitymanager  
org.hibernate.internal.util.type  
org.hibernate.internal.util.xml  
org.hibernate.jdbc
Abstracts certain very specific aspects of the low-level interaction between Hibernate and JDBC.
org.hibernate.jpa
Responsible for dealing with certain details of compliance with the JPA specification, including: bootstrapping JPA, calling JPA event listeners, and managing cases where Hibernate intentionally violates the specification by default (something Hibernate only does if it has a really good reason to do so).
org.hibernate.jpa.boot.internal  
org.hibernate.jpa.boot.spi  
org.hibernate.jpa.event.internal
Internal details of implementing support for JPA callbacks
org.hibernate.jpa.event.spi
The SPI contracts for supporting JPA lifecycle callbacks.
org.hibernate.jpa.internal
Defines Hibernate implementation of Java Persistence specification.
org.hibernate.jpa.internal.enhance  
org.hibernate.jpa.internal.util  
org.hibernate.jpa.spi  
org.hibernate.jpamodelgen
The main package of this annotation processor.
org.hibernate.jpamodelgen.annotation
Implementation of the model classes backed by annotations.
org.hibernate.jpamodelgen.model  
org.hibernate.jpamodelgen.util
Helper classes for string and type processing as well as access type detection.
org.hibernate.jpamodelgen.util.xml
XML helper classes.
org.hibernate.jpamodelgen.xml
Implementation of the model classes backed by annotations.
org.hibernate.jpamodelgen.xml.jaxb  
org.hibernate.loader
This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects.
org.hibernate.loader.ast.internal  
org.hibernate.loader.ast.spi  
org.hibernate.loader.internal  
org.hibernate.mapping
This package defines the Hibernate configuration-time mapping model.
org.hibernate.metadata
This package defines an API for accessing details about model mapping.
org.hibernate.metamodel
This package defines an API for accessing the runtime metamodel describing persistent entities in Java and their mappings to the relational database schema.
org.hibernate.metamodel.internal  
org.hibernate.metamodel.mapping
Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).
org.hibernate.metamodel.mapping.internal  
org.hibernate.metamodel.mapping.ordering
Support for set and map ordering
org.hibernate.metamodel.mapping.ordering.ast  
org.hibernate.metamodel.model.convert.internal  
org.hibernate.metamodel.model.convert.spi  
org.hibernate.metamodel.model.domain
Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).
org.hibernate.metamodel.model.domain.internal  
org.hibernate.metamodel.model.domain.spi  
org.hibernate.metamodel.spi  
org.hibernate.persister.collection
This package abstracts persistence mechanisms for collections.
org.hibernate.persister.collection.mutation
Defines support for performing mutation operations against collections.
org.hibernate.persister.entity
This package abstracts persistence mechanisms for entities.
org.hibernate.persister.entity.mutation
Defines support for performing mutation operations originating from persistence-context events
org.hibernate.persister.internal  
org.hibernate.persister.spi  
org.hibernate.persister.walking.spi
Package for "walking" associations through metadata definition.
org.hibernate.pretty
Contains some functions for pretty-printing things for exception and log messages.
org.hibernate.procedure
Defines support for executing database stored procedures and functions and accessing its outputs.
org.hibernate.procedure.internal
Defines the internal support for implementing stored procedure calling.
org.hibernate.procedure.spi  
org.hibernate.property.access.internal  
org.hibernate.property.access.spi
Integration contracts related with PropertyAccessStrategy
org.hibernate.proxool.internal
Implementation of ConnectionProvider using the proxool Connection pool.
org.hibernate.proxy
This package defines a framework for lazy-initializing entity proxies.
org.hibernate.proxy.map  
org.hibernate.proxy.pojo  
org.hibernate.proxy.pojo.bytebuddy  
org.hibernate.query
Everything related to HQL/JPQL, native SQL, and criteria queries.
org.hibernate.query.criteria
Hibernate's support for JPA criteria queries.
org.hibernate.query.criteria.internal  
org.hibernate.query.criteria.spi  
org.hibernate.query.derived  
org.hibernate.query.hql
Package defining support for HQL queries (including supprt for JPQL as a subset of HQL).
org.hibernate.query.hql.internal  
org.hibernate.query.hql.spi  
org.hibernate.query.internal  
org.hibernate.query.named
Support for named queries
org.hibernate.query.procedure  
org.hibernate.query.results
Support for defining result-set mappings used in NativeQuery and ProcedureCall / StoredProcedureQuery.
org.hibernate.query.results.complete
Support for immutable result/fetch builder graph nodes built from static sources such as JPA's SqlResultSetMapping or `hbm.xml` mapping <resultset/>.
org.hibernate.query.results.dynamic
Support for mutable result/fetch builder graphs nodes built dynamically via Hibernate's NativeQuery APIs
org.hibernate.query.results.implicit
Defines support for implicit ResultSet mappings.
org.hibernate.query.spi  
org.hibernate.query.sql
Package defining support for native SQL queries
org.hibernate.query.sql.internal  
org.hibernate.query.sql.spi  
org.hibernate.query.sqm  
org.hibernate.query.sqm.function  
org.hibernate.query.sqm.internal
Package for the SQM-backed Query implementation details
org.hibernate.query.sqm.mutation.internal  
org.hibernate.query.sqm.mutation.internal.cte  
org.hibernate.query.sqm.mutation.internal.inline  
org.hibernate.query.sqm.mutation.internal.temptable
Support for multi-table SQM mutation (insert, update, delete) operations using a table to temporarily hold the matching ids.
org.hibernate.query.sqm.mutation.spi  
org.hibernate.query.sqm.produce.function
Package defining support for SqmFunctionDescriptor handling.
org.hibernate.query.sqm.produce.function.internal  
org.hibernate.query.sqm.spi
SPI-level SQM contracts
org.hibernate.query.sqm.sql
Package for the translation of SQM into SQL AST
org.hibernate.query.sqm.sql.internal  
org.hibernate.query.sqm.tree
This package contains the classes that make up the SQM tree nodes.
org.hibernate.query.sqm.tree.cte  
org.hibernate.query.sqm.tree.delete  
org.hibernate.query.sqm.tree.domain  
org.hibernate.query.sqm.tree.expression  
org.hibernate.query.sqm.tree.from  
org.hibernate.query.sqm.tree.insert  
org.hibernate.query.sqm.tree.jpa  
org.hibernate.query.sqm.tree.predicate  
org.hibernate.query.sqm.tree.select  
org.hibernate.query.sqm.tree.update  
org.hibernate.relational
Programmatic access to the schema management tool.
org.hibernate.relational.internal  
org.hibernate.resource.beans.container.internal  
org.hibernate.resource.beans.container.spi  
org.hibernate.resource.beans.internal  
org.hibernate.resource.beans.spi  
org.hibernate.resource.jdbc
A facility for managing JDBC connections and other heavyweight resources.
org.hibernate.resource.jdbc.internal  
org.hibernate.resource.jdbc.spi  
org.hibernate.resource.transaction
Defines the resource-level transaction capabilities of Hibernate, which revolves around the TransactionCoordinator contract.
org.hibernate.resource.transaction.backend.jdbc.internal  
org.hibernate.resource.transaction.backend.jdbc.spi  
org.hibernate.resource.transaction.backend.jta.internal  
org.hibernate.resource.transaction.backend.jta.internal.synchronization
Internal implementation details for reacting to JTA transaction completion via Synchronization callbacks
org.hibernate.resource.transaction.internal
Internal implementation details for the resource-level transaction capabilities of Hibernate.
org.hibernate.resource.transaction.spi
Extended SPI contracts for the resource-level transaction capabilities of Hibernate.
org.hibernate.result
Defines support for dealing with database results, accounting for mixed result sets and update counts hiding the complexity of how this is exposed via the JDBC API.
org.hibernate.result.internal  
org.hibernate.result.spi  
org.hibernate.service
Defines a framework for pluggable services, allowing for customization of key components of Hibernate, and abstraction of these components as SPI interfaces.
org.hibernate.service.internal  
org.hibernate.service.spi  
org.hibernate.spatial  
org.hibernate.spatial.contributor  
org.hibernate.spatial.criteria  
org.hibernate.spatial.criteria.internal  
org.hibernate.spatial.dialect.cockroachdb
SpatialDialects for CockroachDB
org.hibernate.spatial.dialect.db2  
org.hibernate.spatial.dialect.h2gis  
org.hibernate.spatial.dialect.hana  
org.hibernate.spatial.dialect.mariadb  
org.hibernate.spatial.dialect.mysql  
org.hibernate.spatial.dialect.oracle  
org.hibernate.spatial.dialect.postgis  
org.hibernate.spatial.dialect.sqlserver  
org.hibernate.spatial.integration  
org.hibernate.spatial.jts  
org.hibernate.spatial.predicate  
org.hibernate.spi
A tiny SPI for dealing with compound names.
org.hibernate.sql
This package defines helper classes for rendering SQL fragments and SQL statements.
org.hibernate.sql.ast
Package defining a SQL AST for use in creating and executing various JDBC operations
org.hibernate.sql.ast.spi
Package defining support for creating and consuming SQL AST
org.hibernate.sql.ast.tree
Package defining the SQL AST.
org.hibernate.sql.ast.tree.cte  
org.hibernate.sql.ast.tree.delete  
org.hibernate.sql.ast.tree.expression
Contracts related to expressions in a SQL tree
org.hibernate.sql.ast.tree.from  
org.hibernate.sql.ast.tree.insert  
org.hibernate.sql.ast.tree.predicate  
org.hibernate.sql.ast.tree.select  
org.hibernate.sql.ast.tree.update  
org.hibernate.sql.exec
Package defining support for execution of SQL statements through JDBC.
org.hibernate.sql.exec.internal  
org.hibernate.sql.exec.spi  
org.hibernate.sql.model
Package contains specialized SQL AST nodes and builders for table mutations for model parts originating from normal persistence-context events related to flush, etc.
org.hibernate.sql.model.ast
SQL AST extensions for model mutations
org.hibernate.sql.model.ast.builder
Support for building TableMutation references for persisting entity mutation events
org.hibernate.sql.model.internal  
org.hibernate.sql.model.jdbc
Extensions to JdbcOperation for model mutations
org.hibernate.sql.results
Package for processing JDBC ResultSets into hydrated domain model graphs based on a "load plan" defined by a "domain result graph" - one or more DomainResult nodes with zero-or-more Fetch nodes
org.hibernate.sql.results.caching
Support for caching of query results
org.hibernate.sql.results.caching.internal  
org.hibernate.sql.results.graph  
org.hibernate.sql.results.graph.basic  
org.hibernate.sql.results.graph.collection  
org.hibernate.sql.results.graph.collection.internal  
org.hibernate.sql.results.graph.embeddable  
org.hibernate.sql.results.graph.embeddable.internal  
org.hibernate.sql.results.graph.entity  
org.hibernate.sql.results.graph.entity.internal  
org.hibernate.sql.results.graph.instantiation  
org.hibernate.sql.results.graph.instantiation.internal  
org.hibernate.sql.results.graph.internal  
org.hibernate.sql.results.graph.tuple  
org.hibernate.sql.results.internal  
org.hibernate.sql.results.internal.domain  
org.hibernate.sql.results.jdbc.internal  
org.hibernate.sql.results.jdbc.spi  
org.hibernate.sql.results.spi  
org.hibernate.stat
This package exposes statistics about a running instance of SessionFactory and its interaction with the database and second-level cache.
org.hibernate.stat.internal  
org.hibernate.stat.spi  
org.hibernate.testing  
org.hibernate.testing.async  
org.hibernate.testing.boot  
org.hibernate.testing.bytecode.enhancement  
org.hibernate.testing.byteman  
org.hibernate.testing.cache  
org.hibernate.testing.cleaner  
org.hibernate.testing.common.connections  
org.hibernate.testing.env  
org.hibernate.testing.hamcrest  
org.hibernate.testing.jdbc  
org.hibernate.testing.jdbc.leak  
org.hibernate.testing.jta  
org.hibernate.testing.junit4  
org.hibernate.testing.logger  
org.hibernate.testing.orm  
org.hibernate.testing.orm.assertj  
org.hibernate.testing.orm.domain  
org.hibernate.testing.orm.domain.animal
Standard model for Hibernate's legacy Animal model used in HQL testing
org.hibernate.testing.orm.domain.contacts  
org.hibernate.testing.orm.domain.gambit  
org.hibernate.testing.orm.domain.helpdesk  
org.hibernate.testing.orm.domain.retail  
org.hibernate.testing.orm.jdbc  
org.hibernate.testing.orm.jpa  
org.hibernate.testing.orm.junit  
org.hibernate.testing.orm.logger  
org.hibernate.testing.orm.transaction  
org.hibernate.testing.schema  
org.hibernate.testing.transaction  
org.hibernate.testing.util  
org.hibernate.testing.util.jpa  
org.hibernate.tool.schema
Contains tooling related to DDL generation, export, migration, and validation.
org.hibernate.tool.schema.extract.internal  
org.hibernate.tool.schema.extract.spi  
org.hibernate.tool.schema.internal  
org.hibernate.tool.schema.internal.exec  
org.hibernate.tool.schema.internal.script  
org.hibernate.tool.schema.spi  
org.hibernate.transform
Defines strategies for post-processing criteria query results into a form convenient to the application.
org.hibernate.tuple
Most contracts here have been replaced by Hibernate's mapping-model.
org.hibernate.tuple.component  
org.hibernate.tuple.entity  
org.hibernate.type
A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.
org.hibernate.type.descriptor  
org.hibernate.type.descriptor.converter
Support for handling JPA AttributeConverter instances as part of the Hibernate Type system.
org.hibernate.type.descriptor.java
Integrates a range of types defined by the JDK with the type system of Hibernate.
org.hibernate.type.descriptor.java.spi  
org.hibernate.type.descriptor.jdbc
Defines handling of almost the full range of standard JDBC-defined SQL data types.
org.hibernate.type.descriptor.jdbc.internal  
org.hibernate.type.descriptor.jdbc.spi  
org.hibernate.type.descriptor.sql  
org.hibernate.type.descriptor.sql.internal  
org.hibernate.type.descriptor.sql.spi  
org.hibernate.type.internal  
org.hibernate.type.jackson  
org.hibernate.type.jakartajson  
org.hibernate.type.jaxb  
org.hibernate.type.spi  
org.hibernate.usertype
An API for user-defined custom types.
org.hibernate.usertype.internal  
org.hibernate.vibur.internal
Implementation of ConnectionProvider using ViburDBCP.