java jdbc mysql 连接池_java – JDBC MySql连接池实践,以避免用尽连接池

该异常表示泄漏数据库连接的应用程序代码的典型情况.您需要确保在正常的JDBC成语中以相同的方法块获取并关闭

try-with-resources块中的所有(Connection,Statement和ResultSet).

public void create(Entity entity) throws SQLException {

try (

Connection connection = dataSource.getConnection();

PreparedStatement statement = connection.prepareStatement(SQL_CREATE);

) {

statement.setSomeObject(1, entity.getSomeProperty());

// ...

statement.executeUpdate();

}

}

或者当您不在Java 7时,在try-finally块中.最终关闭它们将保证在异常情况下也关闭它们.

public void create(Entity entity) throws SQLException {

Connection connection = null;

PreparedStatement statement = null;

try {

connection = dataSource.getConnection();

statement = connection.prepareStatement(SQL_CREATE);

statement.setSomeObject(1, entity.getSomeProperty());

// ...

statement.executeUpdate();

} finally {

if (statement != null) try { statement.close(); } catch (SQLException logOrIgnore) {}

if (connection != null) try { connection.close(); } catch (SQLException logOrIgnore) {}

}

}

是的,即使使用连接池,您仍然需要自己关闭连接.这是起始者的一个常见错误,他们认为它会自动处理关闭.这不是真的.连接池即返回一个封装的连接,它在close()中执行以下操作:

public void close() throws SQLException {

if (this.connection is still eligible for reuse) {

do not close this.connection, but just return it to pool for reuse;

} else {

actually invoke this.connection.close();

}

}

不关闭它们将导致连接未被释放回池重新使用,因此它将一次又一次地获取一个新的连接,直到数据库用完,从而导致应用程序崩溃.

也可以看看:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值