Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
D documents
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • 吴帅
  • documents
  • Wiki
  • Home

Home · Changes

Page history
ashuai created page: home authored Dec 11, 2019 by 吴帅's avatar 吴帅
Hide whitespace changes
Inline Side-by-side
Showing with 60 additions and 0 deletions
+60 -0
  • home.md home.md +60 -0
  • No files found.
home.md 0 → 100644
View page @ f059462a
# 基础模型
```mermaid
graph LR;
  Portal-->|发布/更新配置|Apollo配置中心;
  Apollo配置中心-->|实时推送|App;
  App-->|实时查询|Apollo配置中心;
```
# 结构模型
```mermaid
graph TB
  client-->|2 findConfigServices|LoadBalancer;
  LoadBalancer-->|3 findService|metaServer;
  metaServer-->Eureka;
  client-->|4 access via ip:port/client load balance/error retry|ConfigService;
  ConfigService-->|1 register/cancel|Eureka;
  ConfigService-->|read/write|ConfigDB;
```
# 模块依赖
```mermaid
graph LR;
  client---core;
  client---common;
  core---common;
  common---portal;
  common---Biz;
  Biz---ConfigService;
  Biz---AdminService;
```
> graph TB(top--botom 上下排列)
> graph BT (botom--top)
> graph LR(left--right 左右排列)
> graph RL (right--left)
> --> 在流程图中显示——>
> --- 在流程图中显示——
# 序列图
```mermaid
sequenceDiagram
participant Alice
participant Bob
Alice->>John:hello John
loop healthcheck
John-->>John:fight against
end
Note right of John:rational
John->>Alice:great!
John->>Bob:how about you
Bob->>John:good!
```
\ No newline at end of file
Clone repository
  • Home