How to create Java from online UML models?

I need to create a UML class diagram online and generate Java code from it.

Drawing tools such as cacoo do not allow code to be generated because they are not true UML designers.

Does anyone know an online UML tool that generates Java code?

Thanks for the help ~~

+4
source share
3 answers

You should watch the online GenMyModel UML tool online

GenMyModel allows you to create a UML class diagram online and generate Java code from it.

+5
source

There is one generator that allows you to create Java source code from a UML model. This module uses the standard UML2 metamodel provided by the Eclipse Foundation and is therefore compatible with any UML tools using this standard, for example, UML Designer. This is based on the award-winning project when creating Acceleo code.

You can refer to this: http://marketplace.eclipse.org/content/uml-java-generator#.UeexrtJqkfA

+1
source

If you have UML files (class diagram, etc.), you can import them into any of the UML diagram tools (I prefer ArgoUML). Then you will have the opportunity to generate code from UML diagrams. Code is not only java, but also several languages. Rest if you want to explore!

+1
source

Source: https://habr.com/ru/post/1492039/


All Articles