In an attempt to improve PlantUML documentation...
Wiki Toc View page history Add new chapter Reorder page Raw
![]() |
![]() |
||||
Frequently Asked Questions (FAQ) |
|||||
|
|||||
|
|||||
Was ist das Ziel von PlantUML? |
Understanding the Purpose of PlantUML |
||||
|
|||||
PlantUML wird zum Zeichnen von UML-Diagrammen verwendet, wobei eine einfache und für den Menschen lesbare Textbeschreibung verwendet wird.
Seien Sie vorsichtig, denn es hindert Sie nicht daran, inkonsistente Diagramme zu zeichnen (z. B. zwei Klassen, die voneinander erben). Es ist also eher ein Zeichenwerkzeug als ein Modellierungswerkzeug. Es gibt mehrere Gründe, warum PlantUML eine gute Wahl für die Erstellung von Diagrammen sein könnte:
WARNING This translation need to be updated. WARNING |
PlantUML stands as a robust tool utilized to craft UML diagrams through a straightforward and easily interpretable text description. However, it is pivotal to note that it does not restrict the creation of inconsistent diagrams — such as mutual inheritance between two classes. Consequently, it functions more as a drawing tool rather than a modeling tool.
Exploring why PlantUML could be your go-to for diagram creation:
|
||||
Ich mag nicht, wie die von PlantUML erzeugten Diagramme aussehen. |
Unhappy with PlantUML's Diagram Aesthetics? Here's What You Can Do |
||||
|
|||||
WARNING This translation need to be updated. WARNING |
|
||||
Wie lange sind die von PlantUML Server erzeugten Bilder gültig? |
How long do the images generated by PlantUML Server live for? |
||||
|
|||||
Links zu png oder svg, die von PlantUML Server generiert werden, sind für immer gültig (d.h. so lange der Server läuft).
Wir speichern jedoch keine Diagramme auf unseren Servern. Das mag widersprüchlich klingen. Ist es aber nicht: das gesamte Diagramm ist in der URL selbst komprimiert. Wenn der Server die URL erhält, dekomprimiert er die URL, um den Diagrammtext abzurufen und das Bild zu erzeugen. Es besteht keine Notwendigkeit, irgendetwas zu speichern. Selbst wenn der Server ausgefallen ist, können Sie das Diagramm mit dem Flag -decodeurl über die Befehlszeile abrufen. Außerdem werden die Diagrammdaten in den PNG-Metadaten gespeichert, so dass Sie sie auch von einem heruntergeladenen Bild abrufen können.
Gelegentlich können wir HTTP-Traces auf unserem Server aktivieren. Dies geschieht hauptsächlich bei Leistungsproblemen (wenn wir welche haben), um den Datenverkehr zu verstehen, den wir erhalten. Sobald das Problem gelöst ist, schalten wir die HTTP-Traces wieder aus und entfernen die Protokolle.
Bezüglich sensibler Inhalte: Auch wenn wir die erzeugten Diagramme nicht speichern, sollten Sie sich bewusst sein, dass der gesamte Datenverkehr über HTTP läuft, so dass er leicht abgefangen werden kann.
Daher sollten Sie wahrscheinlich einen lokalen Server in Ihrem eigenen Netzwerk installieren, wenn Sie Diagramme mit sensiblen Informationen erstellen möchten. Sie können dies ohne Java/J2EE-Kenntnisse tun, da in PlantUML.jar ein kleiner Webserver enthalten ist.
|
Links to png or svg generated by PlantUML Server are valid forever (that is as long as the server is up).
However, we do not store any diagrams on our servers. This may sound contradictory. It is not: the whole diagram is compressed into the URL itself. When the server receives the URL, it decompresses the URL to retrieve the diagram text and generates the image. There is no need to store anything. Even if the server is down, you can retrieve the diagram using the flag -decodeurl with the command line. Furthermore, the diagram data is stored in PNG metadata, so you can fetch it even from a downloaded image.
Occasionally we may activate HTTP traces on our server. This is mainly for performance issues (when we have some) to understand the traffic we get. Once the issue solved, we turn back off HTTP traces and we remove the logs.
Concerning sensitive content: even if we do not store the generated diagrams, please be aware that all traffic goes through HTTP, so it's easy to catch.
So you should probably install a local server on your own network if you plan to generate diagrams with sensitive information. You can do this with no Java/J2EE knowledge since there is a tiny web server included in PlantUML.jar.
|
||||
It does not work on my config! |
|||||
|
|||||
PlantUML has been installed on various systems, and some users have reported minor issues when installing it.
You can have a look on this page which give advises if something is wrong. |
|||||
Which version of Graphviz should I use? |
|||||
|
|||||
You have more information about Graphviz about Graphviz here.
The following version have been tested, and are known to work:
dot -c in a command line to finalize the installation. You may have to run dot -c with Administrator Right.
If you compile Graphviz by yourself, you have to build it with libexpat in order to work with PlantUML.
|
|||||
Is this mature? I don't see any new release? |
|||||
|
|||||
Google Trends are somehow positive. And there are few books that mention PlantUML. So yes, it's mature.
Note that PlantUML is developed with continuous integration in mind. That means that there are new releases quite often, with (hopefully!) backward compatibility. So the file
PlantUML.jar may changed over time, while keeping the same name.
If you want to know the exact version you are using, you can type in the command line:
or use the following small special diagram description:
|
|||||
How to know if a new release is available? |
|||||
|
|||||
To check if a newer version is available for download, you can go to the download page.
You can also subscribe to the following rss flows:
Or you can use the command line:
Or use the following small special diagram description:
|
|||||
I want to generate huge diagrams! |
|||||
|
|||||
PlantUML limits image width and height to 4096. There is an environment variable that you can set to override this limit:
PLANTUML_LIMIT_SIZE . You have to define this variable before launching PlantUML, something like:
or
Another way is an option in the command line:
Note that if you generate very big diagrams, (for example, something like 20 000 x 10 000 pixels), you can have some memory issues. The solution is to add this parameter to the java vm : -Xmx1024m. |
|||||
I have issues with accented characters. |
|||||
|
|||||
Characters encoding is a subtle thing... By default, PlantUML use the default charset of your platform, which may or may not be UTF-8 . If you want to know which charset you are using, you can type the following command:
If you want to use a different charset, for example UTF-8, you can use the -charset flag :
You can also find here information about unicode . Note that even if Java does not support B.O.M. (Byte Order Mark) in UTF-8 format file, a workaround has been put into PlantUML, so this should not be an issue. |
|||||
I have issues with Asian characters. |
|||||
|
|||||
Some Japanese users reported that they have to set the
LANG variable to ja_JP.UTF-8 in their shell before launching PlantUML.
Since the new architecture, it should simply work, because Java knows how to draw East Asian characters. |
|||||
How to become a translator of PlantUML guide or just to improve the current guide? |
|||||
|
|||||
To help to translate or correct the current documentation, you can go to:
And then select your language and your favorite edition syntax.
|
|||||
How to generate EPS? |
|||||
|
|||||
Under which license is PlantUML distributed? |
|||||
|
|||||
PlantUML is distributed under the GPL license.
You can print the license using the command line option:
Or you can use the special diagram:
|
|||||
I don't like GPL! |
|||||
|
|||||
You can also use:
Those versions miss few features (DITAA for example), but are 100% able to generate UML diagrams.
You can print the license of these versions using the command line option:
Or you can use the special diagram:
|
|||||
Are images generated by PlantUML covered by the GPL/LGPL/ASL/EPL/MIT license? |
|||||
|
|||||
No, they are not.
Images (whatever their format : PNG, SVG...) generated by the execution of PlantUML are owned by the author of their corresponding sources code (that is, their textual description in PlantUML language).
Images generated by the execution of PlantUML are not considered as covered work. You can do whatever you want with them.
The generated images can then be used without any reference to the GPL/LGPL/ASL/EPL/MIT license. It is not even necessary to stipulate that they have been generated with PlantUML, although this will be appreciated by PlantUML team.
There is an exception : if the textual description in PlantUML language is also covered by some license (like the GPL/LGPL/ASL/EPL/MIT), then the generated images are logically covered by this license.
|
|||||
Can I redistribute the LGPL binary file PlantUML.jar and if there any constraints about it? |
|||||
|
|||||
As long as you do not modify the Java source code and the jar file, you can integrate PlantUML.jar in your own closed source software.
The only constraint is that you have to mention somewhere in your own license or in your documentation that you are using PlantUML and that PlantUML is distributed under LGPL.
You can then even sell your software and earn money, without any other constraints (although donation will be appreciate in that case
:-)
|
|||||
What is the license of the PlantUML syntax? |
|||||
|
|||||
There are no license for the PlantUML syntax itself : this means that everybody can use it.
So you can use PlantUML comments into your own code : those comments are owned by yourself, and are not considered as covered work, and are not covered by the GPL/LGPL/APL/EPL/MIT license.
Only the current implementation (that is, PlantUML program) is licensed under GPL, LGPL, ASL, EPL or MIT. On the other hand note that the documentation (examples, notices, ...) published in the PlantUML website is copyrighted. But you can still write your own documentation.
|
|||||
What does EmptySvgException mean? |
|||||
|
|||||
PlantUML is using Graphviz to generate some diagrams. So PlantUML is launching dot program and retrieve the information generated by dot as a SVG flow.
This message means that PlantUML is getting an empty flow from dot execution, and therefore cannot generate UML diagrams. There may be several reasons why this happens:
|
|||||
Could not initialize class net.sourceforge.plantuml.ugraphic.UFont |
|||||
|
|||||
If you have the error message
java.lang.NoClassDefFoundError: Could not initialize class net.sourceforge.plantuml.ugraphic.UFont , it probably means that there are no fonts installed on your server.
You can solve it by adding fontconfig on your system:
You may also need to install
|
|||||
I have a message complaining about X11 or headless on MacOS Ventura! |
|||||
|
|||||
If you get this exception on MacOS Ventura from
plantuml with no arguments, adding -gui might work around the problem. This is a known issue but does not appear to indicate a
problem since sub-commands (like -gui ) do work.
If this is not enough, see the next section.
I have a message complaining about X11 or headless!If you are running PlantUML on a linux server without graphical capability, you may have some error message:
-Djava.awt.headless=true .
For example:
|
|||||
I have an UnsatisfiedLinkError under Mac OS X! |
|||||
|
|||||
Under Mac OS X, if you have some error message like:
You need to follow the instructions on http://stackoverflow.com/questions/25914757/osx-yosemite-jvm-shared-library-does-not-contain-the-jni-createjavavm-symbol:
|
|||||
PlantUML scripts are grabbing keyboard/window focus! |
|||||
|
|||||
Depending on your configuration, you can try the flag
-Djava.awt.headless=true .For example:
|
|||||
Is @startuml needed in with -pipe flag? |
|||||
|
|||||
Short answer: You do have to use
@startuml (or @startditaa /@startjcckit ...) when starting a diagram.
Long answer:
The @startuml /@startditaa /@startjcckit is useful to determine the type of diagram (uml, ditaa, jcckit...), and because you can optionally put a filename after the @startXYZ . This also allows to have several diagrams inside the same file.
Earlier versions of PlantUML were not supporting ditaa or jcckit. When you use -pipe flag, since the diagram is generated to standard output, there could be only one diagram in the standard input. And there is no need to specify a filename. For all those reasons, @startuml was not needed when using -pipe flag at that time.
Later, it has been decided to normalize this, and to impose @startXYZ everywhere, even with -pipe flag, because it was confusing for users. Unfortunately, since some existing scripts were already using the fact that @startuml is not needed in -pipe flag, it has been decided to keep this as a deprecated option, just to allow older scripts to run. We indeed do pay attention of ascending compatibility.
For newer scripts, you should not rely on this, and use @startXYZ /@endXYZ with the -pipe flag.
|
|||||
What about XMI? |
|||||
|
|||||
Work is in progress.
|
|||||
I found an issue, but I cannot provide my diagram showing the issue because my diagram contains confidential data |
|||||
|
|||||
There is a
-cypher option with the command line that generates a .preproc file instead of regular image file.
The .preproc generated file looks like the input diagram expect that all words (except PlantUML language keywords) have been replaced by a random set of letters.
You can double check this by running several time the -cypher option (you will get a different text each time).
You may also look at the Cypher.java class used to execute this transformation to be sure that there are no backdoor there to retrieve back your original diagram.
If there is an issue in your original diagram, the same issue is likely to also occur with the cyphered one.
Since the cyphered text is really meaningless, you can safely share it with us : there will be no way for us to guess what you are really working on.
But we will be able to reproduce the issue and fix it so that you can have your original (and confidential) diagram working.
|
|||||
I have a question that is not here! |
|||||
|
|||||
You can use the forum facility.
Someone will try to answer your question there.
|
|||||