Atom에서 PlantUML 사용
환경
아톰
Atom 설치
ATOM 공식 사이트 에서 ZIP 파일을 다운로드합니다.
다운로드한 ZIP 파일의 압축을 풀고
Atom.app
를 /Applications
아래에 놓으십시오.Atom 설정
다음 두 개의 플러그인을 설치합니다.
Graphviz
시퀀스 다이어그램 이외의 다이어그램을 그리려면 렌더링 라이브러리인 Graphviz를 설치해야 합니다.
Homebrew에서 Graphviz를 설치합니다.
설치 절차
$ brew install graphviz
Updating Homebrew...
==> Installing dependencies for graphviz: libpng, freetype, fontconfig, jpeg, libtiff, webp and gd
==> Installing graphviz dependency: libpng
==> Downloading https://homebrew.bintray.com/bottles/libpng-1.6.35.high_sierra.bottle.tar.gz
######################################################################## 100.0%
...(中略)...
🍺 /usr/local/Cellar/gd/2.2.5: 35 files, 1.1MB
==> Installing graphviz
==> Downloading https://homebrew.bintray.com/bottles/graphviz-2.40.1.high_sierra.bottle.1.tar.gz
######################################################################## 100.0%
==> Pouring graphviz-2.40.1.high_sierra.bottle.1.tar.gz
🍺 /usr/local/Cellar/graphviz/2.40.1: 500 files, 11.2MB
설치 확인
$ dot -V
dot - graphviz version 2.40.1 (20161225.0304)
자바
PlanuUML은 Java에서 실행되므로 Java 런타임 설치가 필요합니다.
설치 절차
Java SE Development Kit 8 Download 사이트 에 접속한다.
Accept License Agreement
에 체크. 설치 확인
$ java -version
java version "1.8.0_191"
Java(TM) SE Runtime Environment (build 1.8.0_191-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.191-b12, mixed mode)
PlantUML Viewer 시작
Command + Option + P
를 눌러 뷰어에 그리면 OK.샘플
sample.pu
@startuml
:Main Admin: as Admin
(Use the application) as (Use)
User -> (Start)
User --> (Use)
Admin ---> (Use)
note right of Admin : This is an example.
note right of (Use)
A note can also
be on several lines
end note
note "This note is connected\nto several objects." as N2
(Start) .. N2
N2 .. (Use)
@enduml
cf.) ht tp // p 펑츠 ml. 코 m / 우세 카세 ぢ 아 g m
실행 결과
Reference
이 문제에 관하여(Atom에서 PlantUML 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/o_msyk/items/d35a32665ec1f1177b40텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)