PlantUML快速指南

发布时间 2023-07-26 18:52:32作者: chengjon

什么是PlantUML

PlantUML是一个快速创建UML图形的组件,官网上之所以称它是一个组件,我 想主要是因为多数情况下我们都是在Eclipse、NetBenas、Intellijidea、 Emacs、Word等软件里来使用PlantUML。

PlantUML支持的图形有:
sequence diagram,
use case diagram,
class diagram,
activity diagram (here is the new syntax),
component diagram,
state diagram,
object diagram,
wireframe graphical interface

语法入门

https://www.cnblogs.com/young-youth/p/11665573.html

复杂图式

http://www.plantuml.com/plantuml/uml/SyfFKj2rKt3CoKnELR1Io4ZDoSa70000

http://archive.3zso.com/archives/plantuml-quickstart.html#sec-2

@startuml
skin rose
start
partition "**新产品意向与识别**" {
    note
        这是我的注释
        ----
        //Creole 测试//
    end note
    :Ready;
    :HelloWorld(i)>
    :Hello-Sent;
}

@enduml