從文字描述生成UML圖

banq發表於2019-01-02

PlantUML提供將文字變成UNL圖,你可以透過Docker使用PlantUML:https://hub.docker.com/r/think/plantuml/

首先建立了一個名為test.uml的檔案:

@startuml
autonumber
Bob -> Alice : Authentication Request
Bob <- Alice : Authentication Response

autonumber 15
Bob -> Alice : Another authentication Request
Bob <- Alice : Another authentication Response

autonumber 40 10
Bob -> Alice : Yet another authentication Request
Bob <- Alice : Yet another authentication Response

@enduml


然後執行:
cat test.uml | docker run --rm -i think/plantuml > test.svg

開啟test.svg就是生成的UML圖了。

 

相關文章