Interface DataSourceFactory
public interface DataSourceFactory
DataSourceFactory encapsulates the creation of a particular
 DataSource implementation such as a non-pooling
 SimpleDriverDataSource
 or a HikariCP pool setup in the shape of a HikariDataSource.
 Call getConnectionProperties() to configure normalized
 DataSource properties before calling getDataSource()
 to actually get the configured DataSource instance.
- Since:
- 3.0
- Author:
- Keith Donald, Sam Brannen
- 
Method SummaryModifier and TypeMethodDescriptionGet the connection properties of theDataSourceto be configured.Get theDataSourcewith the connection properties applied.
- 
Method Details- 
getConnectionPropertiesConnectionProperties getConnectionProperties()Get the connection properties of theDataSourceto be configured.
- 
getDataSourceDataSource getDataSource()Get theDataSourcewith the connection properties applied.
 
-