Skip to content

joelbinn/plant-uml-springboot-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Joel Binnquist
Nov 1, 2016
f6f9fdb · Nov 1, 2016

History

10 Commits
Nov 1, 2016
Oct 31, 2016
Nov 1, 2016
Nov 1, 2016
Nov 1, 2016

Repository files navigation

PlantUML Springboot server

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:


Use Case Diagram

![Use Case Diagram](http://localhost:8080/uml?script= @startuml; skinparam monochrome true; left to right direction; actor User; actor Admin; rectangle system { User-->(UC1); Admin-->(UC1); } @enduml; )

Class Diagram

![Class Diagram](http://localhost:8080/uml?script= @startuml; skinparam monochrome true; package alpha { class A{ length:double; doit():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 ;

Docker

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

About

A PlantUML server implemented with Springboot

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages