PlanUML在Eclipse、IDEA和Sublime中的安裝與入門使用說明
1.安裝graphviz
登入http://www.graphviz.org/download/–>Windows
–>Stable 2.38 Windows install packages
,下載graphviz-2.38.zip。
解壓graphviz-2.38.zip,獲得graphviz-2.38,拷貝至任意目錄,如D:\plantuml\graphviz-2.38\
。
2.Eclipse安裝PlantUML及初步使用
2.1.安裝相關外掛
2.2.重啟Eclipse
2.3.開啟檢視
Windows
–>Show View
–>Others
PlantUML
2.4.初步使用
在專案中建立一個檔案(型別無所謂)或者在java檔案的註釋中寫入以下內容:
@startuml
student.jsp -> StudentController : /school/student/001
StudentController -> student.jsp : student
@enduml
在PlantUML
檢視中,可以看到以下內容:
3.IDEA安裝PlantUML及初步使用
3.1.安裝相關外掛
Settings
–>Plugins
–>搜尋框中錄入plantuml
–>顯示 No plugins find. Search in respositories
–>點選Search in respositories
–>選擇安裝PlantUML Integration
3.2.重啟IDEA
3.3.配置Graphviz
Preferences
–>PlantUML
–>Graphviz Browse
至Graphviz
的dot.exe所在。
例如本示例中地址為:D:\plantuml\graphviz-2.38\release\bin\dot.exe
,然後儲存。
3.4.開啟檢視
View
–>Tool Windows
–>PlantUML
3.5.初步使用
在專案中建立一個檔案(檔案型別無所謂)或者在java檔案的註釋中寫入以下內容:
@startuml
student.jsp -> StudentController : /school/student/001
StudentController -> student.jsp : student
@enduml
在PlantUML
檢視中,可以看到以下內容:
4.Sublime安裝PlantUML及初步使用
4.1.下載plantuml.jar
4.2.增加Sublime編譯項
Tools
–>Build System
–>New Build System
新增以下內容:
{
"cmd": "D:/plantuml/plantuml.bat $file",
"path":"C:/Program Files/Java/jdk1.8.0_131/bin/",
"env": {"GRAPHVIZ_DOT":"D:/plantuml/graphviz-2.38/release/bin/dot.exe"}
}
4.3.編寫PlantUML編譯指令碼
在D:\plantuml\
目錄下編寫編譯plantuml.jar的批處理,內容如下:
java.exe -jar D:/plantuml/plantuml.jar -charset UTF-8 %1
set filename=%1
set filepath=%filename:~0,-3%png
Start "" %filepath%
4.4.設定Sublime編譯模式
Tools
–>Build System
–>選擇plantuml
4.5.初步使用
4.5.1.新建檔案
File
–>New File
@startuml
student.jsp -> StudentController : /school/student/001
StudentController -> student.jsp : student
@enduml
4.5.2.儲存檔案
儲存檔案
4.5.3.生成圖片
通過Ctrl + B
,生成圖片並顯示。