我正在开发一个在Java服务器上运行的游戏。对于数据库池我使用的是HikariCP,这是一个很棒的库,但它现在抛出了以下错误:
[Hikari housekeeper (pool HikariPool-0)] WARN com.zaxxer.hikari.pool.ProxyLeakTask - Connection leak detection triggered for connection com.mysql.jdbc.JDBC4Connection@5910e440, stack trace follows
java.lang.Exception: Apparent connection leak detected
at nl.finicky.lemonade.database.Database.prepare(Database.java:43)
at nl.finicky.lemonade.rooms.RoomFactory.loadRoom(RoomFactory.java:25)
at nl.finicky.lemonade.rooms.RoomFactory.<init>(RoomFactory.java:20)
at nl.finicky.lemonade.Lemonade.main(Lemonade.java:30)
现在我知道连接泄漏意味着打开的连接在某处浮动,但我无法弄清楚如何或在哪里。
以下是我的数据库类中的方法,其中错误应根据堆栈跟踪发生。
public PreparedStatement prepare(String query) {
PreparedStatement statement = null;
try {
while (statement == null) {
statement = this.dataSource.getConnection().prepareStatement(query, 1);
// The line triggering the error ^
if (statement != null) {
this.databasePool.getStorage();
}
}
} catch (SQLException e) {
e.printStackTrace();
} finally {
return statement;
}
}
这只是发起声明的基本方法。调用此功能后,我会使用它,然后拨打resultSet.close()
,preparedStatement.getConnection.close()
和preparedStatement.close()
仍然告诉我连接已打开。
我该如何解决这个问题?谢谢!
答案 0 :(得分:2)
稍后调用preparedStatement.getConnection.close()
只会获得不同的连接并关闭它。
你不能做你想用这种模式做的事情。调用this.dataSource.getConnection().prepareStatement(...)
正在从池中获取连接并丢弃对它的引用,之后没有人可以关闭它。并且即使您保留对它的引用,也无法在此方法中关闭Connection,因为这样返回的PreparedStatement将无法使用。