mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2026-06-10 15:37:28 +00:00
core 模块的 Deploy.java 和 PostExecVerticle.java 直接引用了上层模块的类, 导致编译失败(package does not exist)。 - Deploy.java: 移除对 JDBCPoolInit 和 JsParserExecutor 的显式调用, vertx.close() 会级联关闭 Vert.x 创建的资源 - PostExecVerticle.java: 移除缓存定时清理逻辑(不能引用 web-service 的 CacheManager) - CacheManager: 添加 registerPeriodicCleanup() 静态方法,通过 VertxHolder 注册定时任务 - CacheServiceImpl: static 块中调用 CacheManager.registerPeriodicCleanup(),服务加载时自动注册