JDBC MySql连接池实践可避免连接池耗尽

JDBC MySql连接池实践可避免连接池耗尽,第1张

JDBC MySql连接池实践可避免连接池耗尽

异常表明应用程序代码的典型情况是数据库连接泄漏。你需要确保你获得 关闭所有的人(

Connection
Statement

ResultSet
)在
try-with-resources
按照正常的JDBC成语在非常相同的方法块的块。

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
步骤。关闭它们
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();    }}

不关闭它们将导致连接不会释放回池以供重用,因此它将一次又一次获取新的连接,直到数据库用尽连接,这将导致应用程序崩溃。

也可以看看:
  • 在JDBC中应多久关闭一次Connection,Statement和ResultSet?
  • 在多线程系统中使用静态java.sql.Connection实例安全吗?
  • 在池中关闭JDBC连接


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5014567.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存