Uses of Interface
org.hibernate.service.spi.Wrapped
Packages that use Wrapped
Package
Description
Various implementations of the SPI contracts for obtaining JDBC
Connection
s.Defines SPI contracts for obtaining JDBC
Connection
s from a
provider implemented as a service.-
Uses of Wrapped in org.hibernate.engine.jdbc.connections.internal
Classes in org.hibernate.engine.jdbc.connections.internal that implement WrappedModifier and TypeClassDescriptionclass
AConnectionProvider
that manages connections from an underlyingDataSource
.class
A connection provider that uses theDriverManager
directly to open connections and provides a very rudimentary connection pool.class
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.spiModifier and TypeInterfaceDescriptioninterface
A contract for obtaining JDBC connections and, optionally, for pooling connections.interface
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 WrappedModifier and TypeClassDescriptionclass
Basic support for implementations ofMultiTenantConnectionProvider
based onDataSource
s.class
Basic support forMultiTenantConnectionProvider
implementations using an individualConnectionProvider
instance per tenant behind the scenes.class
A concrete implementation of theMultiTenantConnectionProvider
contract bases on a number of reasonable assumptions.