Package io.agroal.springframework.boot
Class AgroalDataSource
- java.lang.Object
-
- io.agroal.springframework.boot.AgroalDataSource
-
- All Implemented Interfaces:
AgroalDataSource,Serializable,AutoCloseable,Wrapper,CommonDataSource,DataSource,org.springframework.beans.factory.InitializingBean
public class AgroalDataSource extends Object implements AgroalDataSource, org.springframework.beans.factory.InitializingBean
- Author:
- Luis Barreiro
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.agroal.api.AgroalDataSource
AgroalDataSource.FlushMode
-
-
Constructor Summary
Constructors Constructor Description AgroalDataSource()
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface javax.sql.CommonDataSource
createShardingKeyBuilder
-
Methods inherited from interface javax.sql.DataSource
createConnectionBuilder
-
-
-
-
Method Detail
-
afterPropertiesSet
public void afterPropertiesSet() throws SQLException- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Throws:
SQLException
-
setName
public void setName(String name)
-
setImplementation
public void setImplementation(String name)
-
setMaxSize
public void setMaxSize(int size)
-
setMinSize
public void setMinSize(int size)
-
setInitialSize
public void setInitialSize(int size)
-
setAcquisitionTimeout
public void setAcquisitionTimeout(int timeout)
-
setForegroundValidationTimeout
public void setForegroundValidationTimeout(int timeout)
-
setIdleTimeout
public void setIdleTimeout(int timeout)
-
setLeakTimeout
public void setLeakTimeout(int timeout)
-
setLifetimeTimeout
public void setLifetimeTimeout(int timeout)
-
setValidationTimeout
public void setValidationTimeout(int timeout)
-
setJtaTransactionIntegration
public void setJtaTransactionIntegration(org.springframework.transaction.jta.JtaTransactionManager jtaPlatform)
-
setEnhancedLeakReport
public void setEnhancedLeakReport(boolean enhanced)
-
setUrl
public void setUrl(String url)
-
setDriverClass
public void setDriverClass(Class<? extends DataSource> driver)
-
setDriverClassName
public void setDriverClassName(String driver)
-
setUsername
public void setUsername(String username)
-
setPassword
public void setPassword(String password)
-
setInitialSql
public void setInitialSql(String initialSql)
-
setAutoCommit
public void setAutoCommit(boolean autoCommit)
-
setTrackResources
public void setTrackResources(boolean track)
-
setRecoveryUsername
public void setRecoveryUsername(String username)
-
setRecoveryPassword
public void setRecoveryPassword(String password)
-
getConfiguration
public AgroalDataSourceConfiguration getConfiguration()
- Specified by:
getConfigurationin interfaceAgroalDataSource
-
getMetrics
public AgroalDataSourceMetrics getMetrics()
- Specified by:
getMetricsin interfaceAgroalDataSource
-
setMetrics
public void setMetrics(boolean metrics)
-
flush
public void flush(AgroalDataSource.FlushMode mode)
- Specified by:
flushin interfaceAgroalDataSource
-
isHealthy
public boolean isHealthy(boolean newConnection) throws SQLException- Specified by:
isHealthyin interfaceAgroalDataSource- Throws:
SQLException
-
getPoolInterceptors
public List<AgroalPoolInterceptor> getPoolInterceptors()
- Specified by:
getPoolInterceptorsin interfaceAgroalDataSource
-
setPoolInterceptors
public void setPoolInterceptors(Collection<? extends AgroalPoolInterceptor> interceptors)
- Specified by:
setPoolInterceptorsin interfaceAgroalDataSource
-
close
public void close()
- Specified by:
closein interfaceAgroalDataSource- Specified by:
closein interfaceAutoCloseable
-
getConnection
public Connection getConnection() throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
getConnection
public Connection getConnection(String username, String password) throws SQLException
- Specified by:
getConnectionin interfaceDataSource- Throws:
SQLException
-
unwrap
public <T> T unwrap(Class<T> iface) throws SQLException
- Specified by:
unwrapin interfaceWrapper- Throws:
SQLException
-
isWrapperFor
public boolean isWrapperFor(Class<?> iface) throws SQLException
- Specified by:
isWrapperForin interfaceWrapper- Throws:
SQLException
-
getLogWriter
public PrintWriter getLogWriter() throws SQLException
- Specified by:
getLogWriterin interfaceCommonDataSource- Specified by:
getLogWriterin interfaceDataSource- Throws:
SQLException
-
setLogWriter
public void setLogWriter(PrintWriter out) throws SQLException
- Specified by:
setLogWriterin interfaceCommonDataSource- Specified by:
setLogWriterin interfaceDataSource- Throws:
SQLException
-
getLoginTimeout
public int getLoginTimeout() throws SQLException- Specified by:
getLoginTimeoutin interfaceCommonDataSource- Specified by:
getLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
setLoginTimeout
public void setLoginTimeout(int seconds) throws SQLException- Specified by:
setLoginTimeoutin interfaceCommonDataSource- Specified by:
setLoginTimeoutin interfaceDataSource- Throws:
SQLException
-
getParentLogger
public Logger getParentLogger() throws SQLFeatureNotSupportedException
- Specified by:
getParentLoggerin interfaceCommonDataSource- Throws:
SQLFeatureNotSupportedException
-
-