服务端模块说明

模块结构说明

PIG 微服务开发平台的服务端模块结构如下:

db/ 【数据库脚本目录】
pigx-boot/ 【单体模式启动器】 :9999
pigx-auth/ 【授权服务提供】 :3000
pigx-app-server/ 【移动端服务】 :7060
pigx-common/ 【系统公共模块】
  ├── pigx-common-bom/ 【公共依赖版本】
  ├── pigx-common-audit/ 【变更审计工具】
  ├── pigx-common-core/ 【公共工具类核心包】
  ├── pigx-common-data/ 【数据相关】
  ├── pigx-common-datasource/ 【动态数据源相关】
  ├── pigx-common-encrypt-api/ 【接口加解密操作相关】
  ├── pigx-common-excel/ 【Excel 操作相关】
  ├── pigx-common-feign/ 【Feign 通用封装】
  ├── pigx-common-gateway/ 【动态路由定义】
  ├── pigx-common-gray/ 【灰度路由控制封装】
  ├── pigx-common-idempotent/ 【幂等插件】
  ├── pigx-common-job/ 【定时任务】
  ├── pigx-common-log/ 【日志服务】
  ├── pigx-common-oss/ 【通用文件系统】
  ├── pigx-common-security/ 【安全工具类】
  ├── pigx-common-sentinel/ 【Sentinel 封装】
  ├── pigx-common-sensitive/ 【敏感词脱敏】
  ├── pigx-common-sequence/ 【全局发号器】
  ├── pigx-common-swagger/ 【Swagger API 文档生成】
  ├── pigx-common-xss/ 【XSS 安全过滤组件】
  ├── pigx-common-websocket/ 【WebSocket 组件】
  └── pigx-common-seata/ 【分布式事务工具包】
pigx-register/ 【nacos server 模块】 :8848
pigx-flow  【flowable工作流引擎】
pigx-gateway/ 【Spring Cloud Gateway网关】 :9999
pigx-upms/ 【通用用户权限管理模块】
  ├── pigx-upms-api/ 【通用用户权限管理系统公共 API 模块】
  └── pigx-upms-biz/ 【通用用户权限管理系统业务处理模块】 :4000
pigx-visual/ 【图形化模块】
  ├── pigx-monitor/ 【Spring Boot Admin监控】 :5001
  ├── pigx-daemon-elastic-job/ 【xxl-job 客户端示例】
  ├── pigx-daemon-quartz/ 【分布式调度中心(quartz)】
  ├── pigx-codegen/ 【图形化代码生成】 :5003
  ├── pigx-jimu-platform/ 【报表在线设计模块】 :5006
  ├── pigx-report-platform/ 【大屏在线设计模块】 :9095
  ├── pigx-xxl-job-admin/ 【xxl-job控制台 (源码整合的 xxl-job 的服务端)】 :9080
  ├── pigx-pay-platform/ 【微信支付宝收单模块】 :5010
  └── pigx-mp-platform/ 【微信管理模块】 :6000
模块说明

各模块按功能分类组织,包含核心服务、公共组件和可视化工具,支持微服务架构的完整开发需求。

本页目录