Trying to reverse-engineer existing project and it would be of great help to see how classes collaborate/depend on each other. Is there a way to build project-wide UML diagram (or class diagram of any kind) in IntelliJ IDEA using build-in functionallity or using some free plugin?
Asked
Active
Viewed 3.4k times
31
-
7Note: Diagrams > Show Diagram feature is not available in the free Community Edition – Andrejs Apr 16 '16 at 18:44
1 Answers
51
Right click on your package
no matter which. Click Diagrams
> Show Diagram
(Ctrl+Alt+Shift+U). You will see your package in diagram editor.
Now:
- You can
expand
(E) orcollapse
(C) all nodes. - You can show dependencies
- You can show many attributes of nodes (constructors, methods, properties...)
- You can drag&drop other packages from project explorer.
So, play with it a bit and I think you will achieve what you need.
This is how it could look like:

Pang
- 9,564
- 146
- 81
- 122

Milan Baran
- 4,133
- 2
- 32
- 49
-
3
-
1
-
8i cannot see `Diagrams` option on right clicking my packages, i have idea 2016.1.1 CE – Zavael Apr 21 '16 at 06:51
-
Does you project support maven? Does it contain pom.xml? Then right click on your module or inside opened pom.xml file and you should see `Diagrams` in the menu. – Milan Baran Apr 21 '16 at 15:47
-
13
-
-
How do you export this as an Image, i am getting an error: too large for export. I want to render this in gliffy in confluence. any clues? – dresh Mar 27 '20 at 13:03