cn.hutool.db.ds.simple.AbstractDataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.db.ds.simple;
import java.io.Closeable;
import java.io.PrintWriter;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.util.logging.Logger;
import javax.sql.DataSource;
/**
* 数据源抽象实现
* @author Looly
*
*/
public abstract class AbstractDataSource implements DataSource, Cloneable, Closeable{
@Override
public PrintWriter getLogWriter() {
return DriverManager.getLogWriter();
}
@Override
public void setLogWriter(PrintWriter out) {
DriverManager.setLogWriter(out);
}
@Override
public void setLoginTimeout(int seconds) {
DriverManager.setLoginTimeout(seconds);
}
@Override
public int getLoginTimeout() {
return DriverManager.getLoginTimeout();
}
@Override
public T unwrap(Class iface) throws SQLException {
throw new SQLException("Can't support unwrap method!");
}
@Override
public boolean isWrapperFor(Class> iface) throws SQLException {
throw new SQLException("Can't support isWrapperFor method!");
}
/**
* Support from JDK7
* @since 1.7
*/
@Override
public Logger getParentLogger() throws SQLFeatureNotSupportedException {
throw new SQLFeatureNotSupportedException("DataSource can't support getParentLogger method!");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy