在以下程序中,我一直处于睡眠模式。但仍然没有关闭。
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import org.apache.tomcat.jdbc.pool.DataSource;
import org.apache.tomcat.jdbc.pool.PoolProperties;
public class ConnPool {
public static void main(String[] args) throws Exception {
PoolProperties p = new PoolProperties();
p.setUrl("jdbc:mysql://localhost:3306/users");
p.setDriverClassName("com.mysql.jdbc.Driver");
p.setUsername("root");
p.setPassword("root1");
p.setJmxEnabled(true);
p.setTestWhileIdle(false);
p.setTestOnBorrow(true);
p.setValidationQuery("SELECT 1");
p.setTestOnReturn(false);
p.setValidationInterval(10000);
p.setTimeBetweenEvictionRunsMillis(10000);
p.setMaxActive(100);
p.setInitialSize(10);
p.setMaxWait(10000);
p.setRemoveAbandonedTimeout(60);
p.setMinEvictableIdleTimeMillis(10000);
p.setMinIdle(10);
p.setLogAbandoned(true);
p.setRemoveAbandoned(true);
p.setJdbcInterceptors("org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;"
+ "org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer");
DataSource datasource = new DataSource();
datasource.setPoolProperties(p);
Connection con = null;
try {
con = datasource.getConnection();
Statement st = con.createStatement();
ResultSet rs = st.executeQuery("select * from emp");
int cnt = 1;
while (rs.next()) {
System.out.println( "Name:" + rs.getString(1)+ " Address:" + rs.getString(2) );
}
rs.close();
st.close();
Thread.sleep(40000);
System.out.print(con.isClosed());
} finally {
/* if (con != null) {
try {
con.close();
} catch (Exception ignore) {
}
}*/
}
}
}
答案 0 :(得分:3)
使用连接池时,仍需要通过调用Connection.close()
显式关闭连接。这将向连接池发出信号,表明连接再次空闲,并且可以返回到连接池。
从连接池获取的Connection
不是与数据库的实际物理连接,而是作为实际物理连接的包装器或代理的逻辑连接。对于某些任务(最值得注意的是close()
),它将实现稍微不同的行为(以便连接池可以重用它),但对于最终用户,它的行为就好像它是正常连接(例如,所有依赖对象应该关闭)。
您的问题并不是很明确,但我会假设您想要问为什么即使您设置了超时,连接池还没有回收连接。我可以想到几个原因:
removeAbandonedTimeout
设置为60秒,而您只能睡眠40000毫秒(40秒),Connection
,或者当可用连接上的池变低时)