1、druid监控访问失败修复;2、备注多余信息移除;

This commit is contained in:
gaoqr
2025-07-25 15:33:05 +08:00
parent 2be42f3c0d
commit fb540a7f9d
9 changed files with 11 additions and 11 deletions
@@ -21,7 +21,7 @@ public class CacheUtils {
// 只阻塞当前数据加载线程,其他线程返回旧值
.refreshAfterWrite(duration)
// 通过 asyncReloading 实现全异步加载,包括 refreshAfterWrite 被阻塞的加载线程
.build(CacheLoader.asyncReloading(loader, Executors.newCachedThreadPool())); // TODO 芋艿:可能要思考下,未来要不要做成可配置
.build(CacheLoader.asyncReloading(loader, Executors.newCachedThreadPool())); // TODO 可能要思考下,未来要不要做成可配置
}
/**