Install Graphviz.
Build and Start the server:
$ mvn spring-boot:run
Then if you open this README-file in a Markdown editor, like MacDown, an UML image shall appear between the horizontal lines below, when this page is reloaded:
; Admin-->(UC1); } @enduml; )
:void; } class B; class C; A <|-- B; B o--"dees\n0..n" D:knows >; D *-- C; } package beta { class D; interface E{ notify(event:Event):void; } class Event; C --> alpha.A; E <|.. D; E..> Event; } @enduml; )
See PlantUML for more information about syntax.
Note: a difference compared to vanilla PlantUML syntax is that each line must be terminated with the character ;
It is possible to build a docker image with graphviz and server packaged:
$ mvn clean package docker:build
$ docker run -d --name plant-uml -p 19180:8080 plant-uml-springboot-server:1.0.0
Or just start the docker image available at docker.io
:
$ docker run -d --name plant-uml -p 19180:8080 joelbinn/plant-uml-springboot-server:1.0.0