一:基本介绍
BeeCP 是一款小型 JDBC 连接池组件,具有性能高,代码轻,稳定好的特点。
二:优化内容
1:移除借用线程的内部状态类(BorrowerState)和其关联的状态变量
2:在连接池内增加 ThreadLocal 扩展子类,在initialValue方法内部创建借用线程的缓存shili(Borrower)
3:优化池内连接回收方法和池内线程等待片段,使用 null 作为等待传递状态
相对前一版本性能方面略有提升,建议升级。
三:BeeCP-Starter 同步升级
1:修复单数据源模式下 SQL 监控列表无数据问题
2:登陆界面标签支持中英文切换
3:使用 BeeCP 升级到最新(3.3.9)
四:软件包下载
<dependency>
<groupId>com.github.chris2018998</groupId>
<artifactId>beecp</artifactId>
<version>3.3.9</version>
</dependency>
<dependency>
<groupId>com.github.chris2018998</groupId>
<artifactId>beecp-spring-boot-starter</artifactId>
<version>1.6.9</version>
</dependency>
五:项目地址
https://github.com/Chris2018998/BeeCP
https://github.com/Chris2018998/BeeCP-Starter
https://gitee.com/Chris2018998/BeeCP
https://gitee.com/Chris2018998/BeeCP-Starter