In an attempt to improve PlantUML documentation...
Wiki Toc Recent changes View page history Add new chapter Reorder page Raw
PlantUML PicoWeb ServerMany plugins take advantage of the online web server to generate images. For some reasons (security, performance...) you may need to use your own local server instead. This is possible thanks to the PlantUML Server which is available here. However, installing and configuring a full webserver may be too complex for some users so we have decided to integrated a tiny webserver insideplantuml.jar .
This means that you only need a Java Runtime Environment and plantuml.jar to run this very simple web server.
| ||
Running the serverRunning the server is pretty simple. You just have to launch:
By default, this server runs on port 8080 . You can change the port this way:
The server is really basic. It only understand GET requests with following patterns:
http://127.0.0.1:8080 .
This way, you can very easily any plugin which needs some PlantUML HTTP server without the official online server.
| ||