要保持有效的数据库连接,我正在使用apache-xalan的ConnectionPool接口。是否有任何属性可以杀死长时间处于空闲状态的连接池中的某些连接?
apache-xalan:https://xalan.apache.org/xalan-j/apidocs/org/apache/xalan/lib/sql/ConnectionPool.html
在hikariCP框架中,我们具有idleTimeout属性(https://github.com/brettwooldridge/HikariCP)。在idleTimeout之后,连接究竟发生了什么,连接会被破坏吗? 销毁连接后,如果我们需要再建立一个连接,它将再次创建新连接吗?