Home > Software design >  How to autogenerate UML diagram for java in IntelliJ
How to autogenerate UML diagram for java in IntelliJ

Time:06-08

I created a medium-sized project in java using IntelliJ, and for my presentation, I need to have a UML diagram of the project structure. Since the project is not particularly small, I wanted to find a plugin that would draw the diagram for me. I've tried installing PlantUML but the only option it provides is writing the whole diagram yourself. Any ideas or suggestions? Thank you in advance for any helpful input.

CodePudding user response:

Right click on the project -> Diagrams -> Show Diagram... -> Java classes Diagram

  • Related