Uses of Interface
org.hibernate.service.spi.Wrapped
-
Packages that use Wrapped Package Description org.hibernate.agroal.internal Implementation of ConnectionProvider using Agroal.org.hibernate.c3p0.internal Implementation of ConnectionProvider using the c3p0 Connection pool.org.hibernate.engine.jdbc.connections.internal Various implementations of the SPI contracts for obtaining JDBCConnection
s.org.hibernate.engine.jdbc.connections.spi Defines SPI contracts for obtaining JDBCConnection
s from a provider implemented as a service.org.hibernate.hikaricp.internal Implementation of ConnectionProvider using HikariCP.org.hibernate.proxool.internal Implementation of ConnectionProvider using the proxool Connection pool.org.hibernate.testing.jdbc org.hibernate.testing.jta org.hibernate.testing.orm.jdbc org.hibernate.vibur.internal Implementation of ConnectionProvider using ViburDBCP. -
-
Uses of Wrapped in org.hibernate.agroal.internal
Classes in org.hibernate.agroal.internal that implement Wrapped Modifier and Type Class Description class
AgroalConnectionProvider
ConnectionProvider based on Agroal connection pool To use this ConnectionProvider set: -
Uses of Wrapped in org.hibernate.c3p0.internal
Classes in org.hibernate.c3p0.internal that implement Wrapped Modifier and Type Class Description class
C3P0ConnectionProvider
A connection provider that uses a C3P0 connection pool. -
Uses of Wrapped in org.hibernate.engine.jdbc.connections.internal
Classes in org.hibernate.engine.jdbc.connections.internal that implement Wrapped Modifier and Type Class Description class
DatasourceConnectionProviderImpl
AConnectionProvider
that manages connections from an underlyingDataSource
.class
DriverManagerConnectionProviderImpl
A connection provider that uses theDriverManager
directly to open connections and provides a very rudimentary connection pool.class
UserSuppliedConnectionProviderImpl
An implementation of theConnectionProvider
interface that simply throws an exception when a connection is requested, the assumption being that the application is responsible for handing the connection to use to the session. -
Uses of Wrapped in org.hibernate.engine.jdbc.connections.spi
Subinterfaces of Wrapped in org.hibernate.engine.jdbc.connections.spi Modifier and Type Interface Description interface
ConnectionProvider
A contract for obtaining JDBC connections and, optionally, for pooling connections.interface
MultiTenantConnectionProvider<T>
A specializedConnection
provider contract used when the application is using multi-tenancy support requiring tenant-aware connections.Classes in org.hibernate.engine.jdbc.connections.spi that implement Wrapped Modifier and Type Class Description class
AbstractDataSourceBasedMultiTenantConnectionProviderImpl<T>
Basic support for implementations ofMultiTenantConnectionProvider
based on DataSources.class
AbstractMultiTenantConnectionProvider<T>
Basic support forMultiTenantConnectionProvider
implementations using individualConnectionProvider
instances per tenant behind the scenes.class
DataSourceBasedMultiTenantConnectionProviderImpl<T>
A concrete implementation of theMultiTenantConnectionProvider
contract bases on a number of reasonable assumptions. -
Uses of Wrapped in org.hibernate.hikaricp.internal
Classes in org.hibernate.hikaricp.internal that implement Wrapped Modifier and Type Class Description class
HikariCPConnectionProvider
HikariCP Connection provider for Hibernate. -
Uses of Wrapped in org.hibernate.proxool.internal
Classes in org.hibernate.proxool.internal that implement Wrapped Modifier and Type Class Description class
ProxoolConnectionProvider
A connection provider that uses a Proxool connection pool. -
Uses of Wrapped in org.hibernate.testing.jdbc
Classes in org.hibernate.testing.jdbc that implement Wrapped Modifier and Type Class Description class
ConnectionProviderDelegate
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties.class
SharedDriverManagerConnectionProviderImpl
A special connection provider that is shared across test runs for better performance.class
SQLServerSnapshotIsolationConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it just sets the READ_COMMITTED_SNAPSHOT isolation level for SQL Server. -
Uses of Wrapped in org.hibernate.testing.jta
Classes in org.hibernate.testing.jta that implement Wrapped Modifier and Type Class Description class
JtaAwareConnectionProviderImpl
AConnectionProvider
implementation intended for testing Hibernate/JTA interaction. -
Uses of Wrapped in org.hibernate.testing.orm.jdbc
Classes in org.hibernate.testing.orm.jdbc that implement Wrapped Modifier and Type Class Description class
PreparedStatementSpyConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it intercept the underlyingPreparedStatement
method calls.class
TimeZoneConnectionProvider
ThisConnectionProvider
extends any other ConnectionProvider that would be used by default taken the current configuration properties, and it just sets a default TimeZone which is different than the current default one. -
Uses of Wrapped in org.hibernate.vibur.internal
Classes in org.hibernate.vibur.internal that implement Wrapped Modifier and Type Class Description class
ViburDBCPConnectionProvider
ViburDBCP connection provider for Hibernate integration.
-