Interface | Description |
---|---|
ConnectionHandle |
Simple interface to be implemented by handles for a JDBC Connection.
|
TransactionalConnection |
Allows injecting a
Connection instance as a bean with any methods invoked
on the connection being delegated to connection bound to the current transaction. |
Class | Description |
---|---|
ConnectionHolder |
Resource holder wrapping a JDBC
Connection . |
DataSourceTransactionManager |
NOTICE: This is a fork of Spring's
PlatformTransactionManager modernizing it
to use enums, Slf4j and decoupling from Spring. |
DataSourceUtils |
Helper class that provides static methods for obtaining JDBC Connections from
a
DataSource . |
DelegatingDataSource |
JDBC
DataSource implementation that delegates all calls
to a given target DataSource . |
DelegatingDataSourceResolver |
Unwraps transactional data source proxies.
|
JdbcTransactionObjectSupport |
Convenient base class for JDBC-aware transaction objects.
|
SimpleConnectionHandle |
Simple implementation of the
ConnectionHandle interface,
containing a given JDBC Connection. |
TransactionalConnectionInterceptor |
An interceptor that allows injecting a
Connection that acts a proxy to lookup the connection for the current transaction. |
TransactionAwareDataSource |
Transaction aware data source implementation.
|