Uses of Package
jakarta.persistence

Packages that use jakarta.persistence
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
Jakarta Persistence Criteria API
SPI for Jakarta Persistence providers
This package defines the central Hibernate APIs, beginning with SessionFactory, which represents an instance of Hibernate at runtime and is the source of new instances of Session and StatelessSession, the most important APIs exposing persistence-related operations for entities.
The various concrete action implementations.
A set of mapping annotations which extend the O/R mapping annotations defined by JPA.
This package contains the interfaces that make up the bootstrap API for Hibernate.
Defines a model for archives which may be scanned to discover managed classes and named resources.
Support for integrating Jakarta Bean Validation.
 
Contains basic support for Java XML Processing (JAXP) via Streaming API for XML (StAX)
 
 
This package defines the boot-time metamodel, which is an interpretation of the domain model (entity classes, embeddable classes, and attributes) and the mapping of these "domain model parts" to the database.
 
Defines the SPI of a registry of JPA AttributeConverters.
 
This API allows intervention by generic code in the process of determining the names of database objects (tables, columns, and constraints).
Support for handling named queries during the bootstrap process.
The class loading service SPI.
Defines actual contract used for strategy selection.
A range of SPIs allowing integration with—and customization of—the process of building metadata.
 
Package defining bytecode code enhancement (instrumentation) support.
Byte Buddy support internals
Package defining bytecode code enhancement (instrumentation) support.
This package defines the API of the second-level cache service.
Internal implementations and support for second-level caching.
Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.
Defines contracts for transactional and concurrent access to cached entity and collection data.
This package defines APIs for configuring Hibernate.
Contains SPIs which define: the notion of a context-bound or "current" session, and the notion of a "current" tenant id.
This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.
Contains implementations of SqmFunctionDescriptor describing a range of relatively-sophisticated SQL functions available in various dialects.
Support for Dialect-specific locking strategies.
This package contains classes which are "shared" by other subsystems, and implementations of some key algorithms.
 
 
Support for JNDI within Hibernate
Support for dealing with parameters of native queries.
An SPI for dealing with parameters of native queries.
This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.
 
An SPI for integrating with container-provided implementations of JTA.
An SPI abstracting the object which implements Transaction.
 
 
 
 
 
 
 
 
 
An SPI for the event listener registration service.
Defines the event types and event listener interfaces for events produced by the stateful Session.
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.
Implements and extends the JPA-defined entity graph API.
 
This package defines an internal SPI abstracting over implementations of the APIs defined in org.hibernate.graph.
This package and its subpackages, especially org.hibernate.id.enhanced, contain the built-in id generators, all of which implement either IdentifierGenerator or PostInsertIdentifierGenerator.
Defines a service for creating id generators.
Implementation of the SPI for id generator factories.
Contains an SPI for id generator factories.
An internal package containing implementations of central Hibernate APIs, mostly defined in org.hibernate.
Internal utility classes
 
 
 
A small API allowing the client of a Hibernate session to interact directly with JDBC, using the same connection and transaction obtained by the session.
The packages in this namespace are responsible for implementing certain requirements of the JPA specification, especially things which are only needed when Hibernate is acting as a JPA persistence provider.
 
An SPI used to initiate and control the JPA bootstrap process, along with SPI interfaces allowing certain sorts of extensions to be contributed during the bootstrap process.
Defines Hibernate implementation of Java Persistence specification.
 
An SPI for managing cases where, by default, Hibernate intentionally violates the letter of the JPA specification.
This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects.
 
This package defines the Hibernate configuration-time mapping model.
This package defines an API for accessing the runtime metamodel describing persistent entities in Java and their mappings to the relational database schema.
 
Defines the runtime domain metamodel, which describes the Java aspect of the application's domain model parts (entities, attributes).
Implementation of the SPI for the runtime domain metamodel.
An SPI for integrating custom entity and collection persisters.
Defines support for executing database stored procedures and functions and accessing their outputs.
Defines the internal implementation of the stored procedure SPI.
Defines an SPI for calling stored procedures and functions.
Contains various implementations of PropertyAccessStrategy.
An SPI abstracting how persistent attributes of an entity or embeddable type are accessed by Hibernate.
Everything related to HQL/JPQL, native SQL, and criteria queries.
The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.
SPI for extending HibernateCriteriaBuilder with additional functionality by registering a Service.
Package defining support for HQL, including JPQL as a subset of HQL.
Implementation of the SPIs for HQL support.
SPIs for HQL support.
 
Support SQL functions in the SQM model.
Support for defining result set mappings used in NativeQuery, ProcedureCall, and StoredProcedureQuery.
Support for immutable result/fetch builder graph nodes built from static sources such as SqlResultSetMapping or the hbm.xml mapping element <resultset/>.
Support for mutable result/fetch builder graphs nodes built dynamically via Hibernate's NativeQuery APIs
Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.
Implementation of the SPIs for native SQL query support.
SPIs for native SQL query support.
This package defines a semantic model of HQL queries.
An SPI for defining, registering, and rendering functions in HQL.
Package for the SQM-backed Query implementation details
Package defining support for SqmFunctionDescriptor handling.
SPI-level SQM contracts
Package for the translation of SQM into SQL AST
 
Nodes representing path expressions in the SQM tree.
Nodes representing expressions in the SQM tree.
Nodes representing root entities and joins in the SQM tree.
Nodes representing insert statements in the SQM tree.
 
Nodes representing logical predicates in the SQM tree.
Nodes representing select statements in the SQM tree.
An implementation of the bean container SPI based on CDI.
Defines the resource-level transaction capabilities of Hibernate, centered around the TransactionCoordinator contract.
Implementations of TransactionCoordinator based on JTA.
Defines support for dealing with results returned from database via JDBC.
 
 
 
 
 
 
 
 
 
 
 
 
Defines a framework for pluggable services, allowing for customization of key components of Hibernate, and abstraction of these components as SPI interfaces.
Implementation of the SPI for integrating pluggable services.
Defines an SPI for integrating pluggable services.
Package defining a SQL AST for use in generation of SQL.
AST nodes representing root tables and joins in a SQL tree.
Support for execution of SQL statements via JDBC.
Implementation of the SPI for execution of SQL statements via JDBC.
SPI for execution of SQL statements via JDBC.
Package for processing JDBC ResultSets into hydrated domain model graphs based on a "load plan" defined by a "domain result graph", that is, one or more DomainResult nodes with zero or more Fetch nodes.
 
Defines an SPI for schema information extraction from the database via JDBC.
An SPI for tooling related to DDL generation, export, migration, and validation.
 
A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types.
Implements the SPI for basic-typed value conversions.
An SPI for basic-typed value conversions, including support for handling JPA AttributeConverter instances as part of the Hibernate Type system.
Integrates a range of types defined by the JDK with the type system of Hibernate.
 
Defines handling of almost the full range of standard JDBC-defined SQL data types.
 
Defines a registry for Hibernate Types.