gpt4 book ai didi

java - C3P0 导致线程关闭

转载 作者:行者123 更新时间:2023-12-02 09:26:07 24 4
gpt4 key购买 nike

我有一个奇怪的问题。我有一个实用程序类,它保存连接并具有准备语句的函数。然后运行、关闭语句,一切正常。

但是,当我尝试使用 ComboPooledDataSource 添加连接池时,我的线程关闭。我对其进行了调试,可以看到一些查询已成功执行,但突然所有内容都关闭,只有 c3p0 线程仍在运行。没有抛出异常。

我尝试将池设置为单个连接以尽可能接近地模仿工作代码,但这也失败了。如果我将连接成员设置为池中的连接,则一切正常,但如果我尝试直接从池中使用,我会得到上面概述的行为。

这里是一些示例代码:

class DBUtilityClass
{
private java.sql.Connection connection;
private ComboPooledDataSource connectionPool;

public void DBUtilityClass()
{
connect();
}

private void connect()
{
connectionPool = new ComboPooledDataSource();
connectionPool.setDriverClass( "org.postgresql.Driver" ); //loads the jdbc driver
connectionPool.setJdbcUrl(urlString.toString());
connectionPool.setUser(user);
connectionPool.setPassword(password);
connectionPool.setAutoCommitOnClose(true);

connectionPool.setInitialPoolSize(1);
connectionPool.setMinPoolSize(1);
connectionPool.setAcquireIncrement(1);
connectionPool.setMaxPoolSize(1);


}

//Version 1 - this works if I set the connection in the constructor
//or if I connect the connection manually without using the pool
public Connection getConnection()
{
connection.setAutoCommit(true);
return connection;
}

//Version 2 - This fails
public Connection getConnection()
{
Connection temp = connectionPool.getConnection();
temp.setAutoCommit(true);
return temp;
}

public PreparedStatement getPreparedStatement(String sql)
{
Connection temp = getConnection();
return temp.prepareStatement(sql);
}
}

最佳答案

类中的函数 publicPreparedStatement getPreparedStatement(String sql) 是一个Connection 泄漏。每次调用时,都会从池中获取一个Connection,但引用会被删除,因此它永远不会close()并返回到池中。

(很抱歉在上面的评论中我花了这么长时间才看到这个!)

当有一个共享连接时,没有问题,一个连接保持 checkout 状态。但是,当您像使用池一样,及时 check out 连接并且不缓存它们时,您必须确保在完成后 close() 它们。

确保对 getConnection() 的每次调用都与对 close() 的调用相匹配。最简单的方法是

  1. 此处不要使用 getPreparedStatement(...)` 函数,只需使用 Connections
  2. 使用try-with-resources
try( Connection conn = myDBUtilityInstance.getConnection ) {
try( PreparedStatement ps = conn.prepareStatement( sql ) ) {
// do work here
}
}

关于java - C3P0 导致线程关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58330754/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com