- 新增 CacheUtill 工具类,实现本地缓存功能,包括添加、获取、移除缓存和定时清理过期缓存 - 新增 MyCache 实体类,用于缓存键值对数据及过期时间 - 新增 oneMse测试类(具体用途待明确)- 在 CarMessageServiceImpl 中注释掉未使用的 RedisTemplate 相关代码 - 在 pom.xml 中添加 caffeine 依赖,用于本地缓存 - 移除 Demo 类中关于 MQTT 和 Kafka 的测试代码- 在 MqttTest 类中简化 Kafka 生产者发送消息的逻辑 |
||
---|---|---|
JavaSample-tcp150158332341883 | ||
cloud-auth | ||
cloud-common | ||
cloud-gateway | ||
cloud-modules | ||
cloud-visual | ||
init-file | ||
node_modules | ||
skywalking | ||
xxl-job | ||
.gitignore | ||
LICENSE | ||
README.md | ||
package-lock.json | ||
package.json | ||
pom.xml |
README.md
系统模块
com.muyu
├── cloud-ui // 前端框架 [80]
├── cloud-gateway // 网关模块 [8080]
├── cloud-auth // 认证中心 [9200]
├── cloud-common // 通用模块
│ └── cloud-common-core // 核心模块
│ └── cloud-common-datascope // 权限范围
│ └── cloud-common-datasource // 多数据源
│ └── cloud-common-log // 日志记录
│ └── cloud-common-redis // 缓存服务
│ └── cloud-common-seata // 分布式事务
│ └── cloud-common-security // 安全模块
│ └── cloud-common-swagger // 系统接口
│ └── cloud-common-system // 系统基础
├── cloud-modules // 业务模块
│ └── cloud-system // 系统模块 [9201]
│ └── cloud-gen // 代码生成 [9202]
│ └── cloud-job // 定时任务 [9203]
│ └── cloud-file // 文件服务 [9300]
├── cloud-visual // 图形化管理模块
│ └── cloud-visual-monitor // 监控中心 [9100]
├──pom.xml // 公共依赖