Uses of Class
org.springframework.jdbc.datasource.AbstractDriverBasedDataSource
Packages that use AbstractDriverBasedDataSource Package Description org.springframework.jdbc.datasource Provides a utility class for easy DataSource access, a PlatformTransactionManager for a single DataSource, and various simple DataSource implementations.Uses of AbstractDriverBasedDataSource in org.springframework.jdbc.datasource
Subclasses of AbstractDriverBasedDataSource in org.springframework.jdbc.datasource Modifier and Type Class Description classDriverManagerDataSourceSimple implementation of the standard JDBCDataSourceinterface, configuring the plain old JDBCDriverManagervia bean properties, and returning a newConnectionfrom everygetConnectioncall.classSimpleDriverDataSourceSimple implementation of the standard JDBCDataSourceinterface, configuring a plain old JDBCDrivervia bean properties, and returning a newConnectionfrom everygetConnectioncall.classSingleConnectionDataSourceImplementation ofSmartDataSourcethat wraps a single JDBC Connection which is not closed after use.