diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bb88fa2b..60e2764a2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ * 【core 】 修复CaseInsensitiveLinkedMap顺序错误问题(issue#IA4K4F@Gitee) * 【core 】 修复DateUtil.offset空指针问题(issue#3617@Github) * 【core 】 修复PathMover.moveContent问题(issue#IA5Q8D@Gitee) +* 【db 】 修复PooledConnection可能的数据库驱动未找到问题(issue#IA6EUQ@Gitee) ------------------------------------------------------------------------------------------------------------- # 5.8.28(2024-05-29) diff --git a/hutool-db/src/main/java/cn/hutool/db/ds/pooled/PooledConnection.java b/hutool-db/src/main/java/cn/hutool/db/ds/pooled/PooledConnection.java index 26a0bea90..ffca39390 100644 --- a/hutool-db/src/main/java/cn/hutool/db/ds/pooled/PooledConnection.java +++ b/hutool-db/src/main/java/cn/hutool/db/ds/pooled/PooledConnection.java @@ -1,6 +1,9 @@ package cn.hutool.db.ds.pooled; import cn.hutool.core.map.MapUtil; +import cn.hutool.core.util.ClassUtil; +import cn.hutool.core.util.StrUtil; +import cn.hutool.db.DbRuntimeException; import cn.hutool.db.DbUtil; import cn.hutool.setting.dialect.Props; @@ -15,7 +18,7 @@ import java.util.Properties; * */ public class PooledConnection extends ConnectionWraper{ - + private final PooledDataSource ds; private boolean isClosed; @@ -29,6 +32,16 @@ public class PooledConnection extends ConnectionWraper{ this.ds = ds; final DbConfig config = ds.getConfig(); + // issue#IA6EUQ 部分驱动无法自动加载,此处手动完成 + final String driver = config.getDriver(); + if(StrUtil.isNotBlank(driver)){ + try { + Class.forName(driver); + } catch (ClassNotFoundException e) { + throw new DbRuntimeException(e); + } + } + final Props info = new Props(); final String user = config.getUser(); if (user != null) { @@ -47,7 +60,7 @@ public class PooledConnection extends ConnectionWraper{ this.raw = DriverManager.getConnection(config.getUrl(), info); } - + public PooledConnection(PooledDataSource ds, Connection conn) { this.ds = ds; this.raw = conn; @@ -71,7 +84,7 @@ public class PooledConnection extends ConnectionWraper{ public boolean isClosed() throws SQLException { return isClosed || raw.isClosed(); } - + /** * 打开连接 * @return this