Go to file
OTTO d43988239c feat(运维监控): 适配Rancher最新版接口(ARM架构仅能使用Rancher最新版本)
在最新版本Rancher中,原版获取命名空间接口被移除,最新版本Rancher将命名空间获取接口调整为K8S原生接口,所以在获取命名空间时需要兼容两种情况:
1. 当获取原版命名空间列表接口时响应状态码为404时,尝试请求新版的K8S原生接口
2. 从命名空间中解析数据对象适配两套接口逻辑
2025-12-09 16:54:55 +08:00
doc ADD file via upload 2023-05-09 17:47:07 +08:00
microservices-api feat(运维监控): 适配Rancher最新版接口(ARM架构仅能使用Rancher最新版本) 2025-12-09 16:54:55 +08:00
microservices-auth refact(微服务平台): 生产环境所有服务端口统一使用8080,简化配置成本 2025-09-08 16:43:18 +08:00
microservices-common fix(运维监控): 优化日志打印逻辑 2025-11-14 15:07:16 +08:00
microservices-gateway fix(运维监控模块): 微服务应用多次点击重启后无反应 2025-08-21 14:57:30 +08:00
microservices-modules feat(运维监控): 适配Rancher最新版接口(ARM架构仅能使用Rancher最新版本) 2025-12-09 16:54:55 +08:00
.gitignore refactor(微服务平台): 清理无效代码 2025-09-04 14:43:04 +08:00
LICENSE Initial commit 2020-05-11 21:20:30 +08:00
README.md updare README 2025-06-07 09:11:08 +08:00
pom.xml refactor(微服务平台): 清理无效代码 2025-09-05 09:02:53 +08:00

README.md

系统模块

com.microservices     
├── microservices-ui              // 前端框架 
├── microservices-gateway         // 网关模块 
├── microservices-auth            // 认证中心 
├── microservices-api             // 接口模块
│       └── microservices-api-system                          // 系统接口
├── microservices-common          // 通用模块
│       └── microservices-common-async                        // 异步线程池配置
│       └── microservices-common-core                         // 核心模块
│       └── microservices-common-datascope                    // 权限范围
│       └── microservices-common-datasource                   // 多数据源
│       └── microservices-common-httpClient                   // http调用
│       └── microservices-common-log                          // 日志记录
│       └── microservices-common-redis                        // 缓存服务
│       └── microservices-common-seata                        // seata分布式事务
│       └── microservices-common-security                     // 安全模块
│       └── microservices-common-swagger                      // 系统接口
├── microservices-modules         // 业务模块
│       └── microservices-cms                                 // 内容管理模块
│       └── microservices-dms                                 // 数据管理体系模块
│       └── microservices-dss                                 // 数据统计系统模块
│       └── microservices-file                                // 文件服务
│       └── microservices-gen                                 // 代码生成
│       └── microservices-job                                 // 定时任务
│       └── microservices-pms                                 // 项目管理系统模块
│       └── microservices-system                              // 系统模块
│       └── microservices-wiki                                // Wiki模块
│       └── microservices-zone                                // 特色专区系统模块
├── microservices-visual          // 图形化管理模块
│       └── microservices-visual-monitor                      // 监控中心
├──pom.xml                // 公共依赖