PlantUML is a component that allows to quickly write diagrams using simple and intuitive language.
类型
Sequence
样例:
图片连接:
1 |
|
sequence-test.md源码:
```plantuml
@startuml
app -> gateway
gateway -> service
service -> db
db --> service
service --> gateway
gateway --> app
@enduml
```
参与者:participant、artor、boundary、control
、entity、database、collections
Deployment
参与者:node
样例:
图片连接:
1 |
|
deployment-test.md源码:
```plantuml
@startuml
actor client
node web
node app
database db
client -> web
web -> app
app -> db
@enduml
```