What’s the goal of PlantUML?
PlantUML is used to draw UML diagrams, using a simple and human readable text description.
Be careful, because it does not prevent you from drawing inconsistent diagrams (such as having two classes inheriting from each other, for example).
So it’s more a drawing tool than a modeling tool.
There are several reasons why PlantUML might be a good choice for creating diagrams:
-
PlantUML is a text-based tool, which means that you can create diagrams by writing sentences in a simple, human-readable language. This makes it easy to understand and edit the structure of your diagrams, even if you’re not an expert in diagramming tools.
-
PlantUML is open-source and available for free, which means that you can use it without having to pay any licensing fees or subscription charges.
-
PlantUML uses intelligent layout algorithms to arrange the elements of your diagrams in a clear and easy-to-understand way, saving you the time and effort of manually positioning and aligning individual elements.
-
PlantUML is a generator, which means that it automatically creates diagrams based on the text you provide. This makes it easy to quickly create and update diagrams, and allows you to focus on expressing the structure and relationships of your diagrams rather than worrying about their appearance.
-
PlantUML is highly customizable, and provides many options for customizing the appearance of your diagrams. You can also leverage the knowledge and expertise of the PlantUML community to find solutions to common layout problems.
Overall, PlantUML is a powerful and versatile tool for creating professional-looking diagrams quickly and easily. It is particularly well-suited for users who prefer a simple, text-based approach to creating diagrams, and who want a tool that can automatically handle the layout and appearance of their diagrams.
I don’t like how the diagrams generated by PlantUML look.
-
You can use themes with PlantUML
You can use link::theme[themes] with PlantUML to customize the appearance of your diagrams. PlantUML provides several built-in themes that you can use, and you can also create your own custom themes by defining link::style-evolution[your own colors and styles].
-
PlantUML does a lot of layout work for you
PlantUML takes care of a lot of the layout work for you, so you can focus on expressing the relationships and structure of your diagram. It uses intelligent layout algorithms to arrange the elements of your diagram in a clear and easy-to-understand way, saving you the time and effort of manually positioning and aligning individual elements. This makes it a great tool for quickly creating professional-looking diagrams without a lot of manual effort.
-
PlantUML is a generator, not a position elements tool
PlantUML is a generator, which means that it automatically creates diagrams based on the text you provide. This is different from some other diagramming tools, which allow you to manually position and arrange individual elements in your diagram.
The main advantage of this approach is that it allows you to create diagrams quickly and easily, without having to worry about the specific placement of individual elements. It also makes it easier to update your diagrams, since you can simply modify the text that represents your diagram, and PlantUML will automatically update the diagram to reflect your changes.
One potential disadvantage of using a generator like PlantUML is that you may not have as much control over the exact layout of your diagram as you would with a tool that allows you to position elements manually. However, for many users, the time and effort saved by using a generator more than makes up for this limitation.
Additionally, the PlantUML community forum is a great resource for finding solutions to common layout problems and sharing tips and tricks for customizing the appearance of your diagrams.
How long do the images generated by PlantUML Server live for?
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 link::text-encoding[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 link::command-line[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 link::server[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 link::picoweb[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 link::faq-install[on this page] which give advises if something is wrong.
Which version of Graphviz should I use?
You have more information about Graphviz link::graphviz-dot[about Graphviz here].
The following version have been tested, and are known to work:
-
2.26.3
-
2.28
-
2.30.1
-
2.34
-
2.36
-
2.38
-
2.44
Note that versions 2.39 to 2.42 do not work very well with PlantUML.
With version 2.44, under Windows, you may have to run dot -c
in a command line to finalize the installation, like in the following example:
You may have to run dot -c
with Administrator Right.
Another option is to install Win32 version of GraphViz 2.44 which does not require this post-install process.
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:
java -jar plantuml.jar -version
or use the following small special diagram description:
@startuml version @enduml
How to know if a new release is available?
To check if a newer version is available for download, you can go to link::download[the download page].
You can also subscribe to the following rss flows:
Or you can use the command line:
java -jar plantuml.jar -version
Or use the following small special diagram description:
@startuml version @enduml
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:
set PLANTUML_LIMIT_SIZE=8192
or
setenv PLANTUML_LIMIT_SIZE 8192
Another way is an option in the command line:
java -DPLANTUML_LIMIT_SIZE=8192 -jar /path/to/plantuml.jar ...
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:
java -jar plantuml.jar -help ... -charset XYZ To use a specific charset (default is windows-1252) ...
If you want to use a different charset, for example UTF-8, you can use the -charset
flag :
java -jar plantuml.jar -charset UTF-8 ...
You can also find link::unicode[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.
export LANG = ja_JP.UTF-8
Since link::svek[the new architecture], it should simply work, because Java knows how to draw East Asian characters.
How to generate EPS?
You can use the -teps
flag in the command line, or format="eps"
in link::ant[the ANT task].
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 link::command-line#pipe[-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 link::command-line#pipe[-pipe] flag at that time.
Later, it has been decided to normalize this, and to impose @startXYZ
everywhere, even with link::command-line#pipe[-pipe] flag, because it was confusing for users. Unfortunately, since some existing scripts were already using the fact that @startuml
is not needed in link::command-line#pipe[-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 link::command-line#pipe[-pipe] flag.
Under which license is PlantUML distributed?
PlantUML is distributed under the GPL license.
You can print the license using the command line option:
java -jar plantuml.jar -license
Or you can use the special diagram:
@startuml license @enduml
I don’t like GPL!
You can also use:
-
link::download#lgpl[LGPL license]
-
link::download#asl[Apache license]
-
link::download#epl[Eclipse Public license]
-
link::download#mit[MIT license]
Those versions miss few features (link::ditaa[DITAA] for example), but are 100% able to generate UML diagrams.
You can print the license of these versions using the command line option:
java -jar plantuml.jar -license
Or you can use the special diagram:
@startuml license @enduml
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 link::donors[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 link::graphviz-dot[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:
-
There is an issue with your Graphviz installation. Try a very simple diagram, with only one class for example.
-
Your version of Graphviz is too old and is crashing with information provided by PlantUML. Check your version with
testdot
-
Your diagram is too complex.
-
There is a bug in PlantUML and/or in dot.
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:
sudo yum install fontconfig or sudo apt-get install fontconfig
You may also need to install
ttf-droid
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:
-
Can’t connect to X11 window
-
X11 connection rejected because of wrong authentication.
Basically, this is because PlantUML needs to have access to some graphical resources (more information here).
You can turn PlantUML to headless mode, using the flag -Djava.awt.headless=true
.
For example:
/usr/bin/java -Djava.awt.headless=true -jar /data/PlantUml/plantuml.jar ...
I have an UnsatisfiedLinkError under Mac OS X!
Under Mac OS X, if you have some error message like:
Error java.lang.UnsatisfiedLinkError / liblwawt.dylib /libosxapp.dylib
You need to follow the instructions on http://stackoverflow.com/questions/25914757/osx-yosemite-jvm-shared-library-does-not-contain-the-jni-createjavavm-symbol:
-
Download and install the package: JavaForOSX.
-
Found the file
AptanaStidio3.ini
, the file by default located under the directory here:/Applications/Aptana Studio 3/AptanaStudio3.app/Contents/MacOS
-
Add
-vm
argument to specify the java which will be used to lunch Aptana Studio:-vm /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java
This seems to work only under Java 6, so you may define the following alias to be used in your scripts.
alias java6="export JAVA_HOME=$(/usr/libexec/java_home -v 1.6.0)"
PlantUML scripts are grabbing keyboard/window focus!
Depending on your configuration, you can try the flag -Djava.awt.headless=true
.
For example:
/usr/bin/java -Djava.awt.headless=true -jar /path/to/plantuml.jar ...
I found an issue, but I cannot provide my diagram showing the issue because my diagram contains confidential data
There is a -cypher
option 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 an error message with the Eclipse Plugin.
If you have the following error message :
The currently displayed page contains invalid values
when displaying the Windows/Preferences/PlantUML, you should try to quit link::eclipse[Eclipse] and use the -clean
flag on the command line:
eclipse -clean
I have a question that is not here!
You can use the forum facility.
Someone will try to answer your question there.