25
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PlantUML導入手順

Last updated at Posted at 2016-11-24

#plantUMLとは
テキストベースでUMLを記述でき、その結果を画像として出力できます。テキストベースなのでGitなどのバージョン管理ツールで世代管理できたり、記述が簡便などのメリットがあります。出力形式はpng,svg?に対応しています。PDFにはデフォルトでは未対応ですが、設定でsvgから変換可能です。

image
(出典:http://yohshiy.blog.fc2.com/blog-entry-152.html)

#インストール
私はwindows10でインストールをしました

http://yohshiy.blog.fc2.com/blog-entry-152.html
上記を参考に進めていきます

 0.Javaのインストール
  https://www.java.com/ja/download/manual.jsp
image

  ダウンロードしてきたインストーラーでJavaの実行環境をインストールをします

 1.PlantUMLのダウンロードとインストール
  http://plantuml.com/download
image
広告がたくさんあってダウンロードリンクがわかり辛いですが画像で示したところにあります

「plantuml.jar」というファイルがダウンロードされます
これが実行ファイルになりますので、インストール作業は不要です

#使用方法
テキストでUMLを記述します

uml.txt
@startuml sample.png
Foo -> Bar : message
Foo <-- Bar
@enduml

「plantuml.jar」を起動してディレクトリを指定すると uml.txt を読みこみます
読み込みが終わると特に操作をせずとも sample.png という名前でUMLの画像ファイルが作成されます

image

#参考
http://plantuml.com/
http://yohshiy.blog.fc2.com/blog-entry-152.html

25
27
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
27

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?