数据库连接池配置:
数据库链接在运行时报错: Caused by: java.sql.SQLRecoverableException: 关闭的语句 at oracle.jdbc.driver.OracleClosedStatement.exitImplicitCacheToActive(OracleClosedStatement.java:4667) at oracle.jdbc.driver.OraclePreparedStatementWrapper.exitImplicitCacheToActive(OraclePreparedStatementWrapper.java:1607) at com.alibaba.druid.util.OracleUtils.exitImplicitCacheToActive(OracleUtils.java:79) at com.alibaba.druid.pool.PreparedStatementPool.get(PreparedStatementPool.java:66) at com.alibaba.druid.pool.DruidPooledConnection.prepareStatement(DruidPooledConnection.java:326) at com.ibatis.sqlmap.engine.execution.SqlExecutor.prepareStatement(SqlExecutor.java:497) at com.ibatis.sqlmap.engine.execution.SqlExecutor.executeUpdate(SqlExecutor.java:75) at com.ibatis.sqlmap.engine.mapping.statement.MappedStatement.sqlExecuteUpdate(MappedStatement.java:216) at com.ibatis.sqlmap.engine.mapping.statement.MappedStatement.executeUpdate(MappedStatement.java:94)
请问有可能是什么原因导致的这个问题??在线等
原提问者GitHub用户qiufeng6407
这个错误可能是由于Oracle JDBC驱动程序与Druid连接池之间的兼容性问题导致的。具体来说,Oracle JDBC驱动程序在某些情况下可能会返回已经关闭的语句,而Druid连接池会对这些语句进行缓存,从而导致后续的SQL执行失败。
为了解决这个问题,您可以尝试更新Oracle JDBC驱动程序版本,或者升级Druid连接池版本。另外,您还可以尝试调整Druid连接池的一些配置参数,以改善连接池的性能和稳定性。
下面是一些可能有用的配置参数:
druid.pool.removeAbandoned: 是否移除长时间未使用的连接。如果设置为true,Druid连接池会自动移除长时间未使用的连接,从而避免连接过期或者无效。
druid.pool.removeAbandonedTimeout: 移除长时间未使用连接的超时时间。如果连接在指定的时间内没有被使用,Druid连接池会将其移除。
druid.pool.maxEvictableIdleTimeMillis: 连接池中连接的最大空闲时间。如果连接在指定的时间内没有被使用,Druid连接池会将其移除,以避免连接过期或者无效。
druid.pool.testOnBorrow: 是否在借用连接时测试连接的可用性。如果设置为true,Druid连接池会在借用连接时测试连接的可用性,从而避免使用无效的连接。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。