MAC环境下,Intellij IDEA中安装使用PlantUML画时序图

IDEA自带类图的生成,但还没有时序图的生成。在团队开发中,代码的交流,有了时序图会更加的清楚。本文对在MAC环境如何安装PlantUML进行阐述:

下载插件

地址为:https://plugins.jetbrains.com...
下载后,我们将得到了一个zip包,**不要**解压。

安装插件

command+,打开参数设置,找到Plugins
点击:Install plugin form dist(从磁盘安装)

MAC环境下,Intellij IDEA中安装使用PlantUML画时序图

选择我们刚刚下载的ZIP文件。然后点击ApplyOK, 按提示重启IDEA。

启用插件

command+,打开参数设置,找到Plugins,在关键字中搜索PlantUML, 并选择启用。点击OK后,按提示重新启动idea

MAC环境下,Intellij IDEA中安装使用PlantUML画时序图

添加依赖

PlantUML依赖于Graphviz,按官方的教程使用brew进行安装.

官方教程:http://plantuml.com/graphviz-dot

以下为官方教程安装Graphviz的引用

Note for Mac users

You can easily install GraphViz by installing brew on your Mac machine. This could fix issues if you have installed GraphViz as .dmg package.

brew install libtool`
brew link libtool
brew install graphviz
brew link --overwrite graphviz

使用PlantUMl创建时序图

file -> new -> uml seqxxxxx,效果如下:
MAC环境下,Intellij IDEA中安装使用PlantUML画时序图

PlantUML官方文档:http://plantuml.com/sequence-...

相关推荐