|
|||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||||
See:
Description
| Interface Summary | |
| SmartDataSource | Interface to be implemented by classes that can provide a connection to a relational database. |
| Class Summary | |
| AbstractDataSource | Abstract base class for Spring's DataSource implementations, taking care of the "uninteresting" glue. |
| ConnectionHolder | Connection holder, wrapping a JDBC Connection. |
| DataSourceTransactionManager | PlatformTransactionManager implementation for single JDBC data sources. |
| DataSourceTransactionObject | DataSource transaction object, representing a ConnectionHolder. |
| DataSourceUtils | Helper class that provides static methods to obtain connections from JNDI and close connections if necessary. |
| DriverManagerDataSource | Implementation of SmartDataSource that configures a plain old JDBC Driver via bean properties, and returns a new Connection every time. |
| SingleConnectionDataSource | Implementation of SmartDataSource that wraps a single connection which is not closed after use. |
| UserCredentialsDataSourceAdapter | An adapter for a target DataSource, applying the given user credentials to
every standard getConnection() call, that is, implicitly
invoking getConnection(username, password) on the target.
|
Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations.