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 Summary
Modifier and TypeMethodDescriptionGet the connection properties of theDataSourceto be configured.Get theDataSourcewith the connection properties applied. 
- 
Method Details
- 
getConnectionProperties
ConnectionProperties getConnectionProperties()Get the connection properties of theDataSourceto be configured. - 
getDataSource
DataSource getDataSource()Get theDataSourcewith the connection properties applied. 
 -