2

Is there a tools or plugin which generates UML class Diagram from grails domain Model?

Jason Aller
  • 3,541
  • 28
  • 38
  • 38
Abdennour TOUMI
  • 87,526
  • 38
  • 249
  • 254

2 Answers2

4

If you have option to use Intellij IDEA, you can just view the UML from 'Domain Class Dependencies' bottom tab for any domain class opened in editor.

Shafiul
  • 1,452
  • 14
  • 21
3

There is a grails plugin :

http://www.grails.org/plugin/create-domain-uml .

Install it via the following command :

grails install-plugin create-domain-uml

To run the plugin:

grails create-domain-uml

This will create a file DomainUML.html in your project root which contains the diagrams.

you can see also : http://www.svenlange.co.za/2010/01/generating-uml-class-diagrams-from-grails-domain-model/

Abdennour TOUMI
  • 87,526
  • 38
  • 249
  • 254