This plugin was designed to reverse-engineer a specific set of XSD files. Those XSD files are included in this source code for your reference. This plugin may not work with the XSD file you need to parse, and may require some customization of the Groovy classes that are used to parse the XSD XML.
If this is the case, please do fork this project and customize or extend it for your application. If you feel that your changes might help others, please submit a pull request so I can merge in your changes. Thanks!
In short: Your milage may vary.
The XML files I was parsing were huge, and generated over 600 domain classes. Grails/Hibernate didn't like this, so I added an option to treat Enum types as constraints within the domain class rather than creating domain classes for each enum type. This dropped my domain class count under 300, and significantly reduced the number of foreign key constraints. It does mean you loose some of the GORM magic if you use the '--enums-as-constraint' option, but if you have a huge XSD file, you may have no choice.
If your XSD is small enough, skip the --enums-as-constraint option as then you'll be able to decode the enums nicely within your services/controllers/views.
grails xsd-to-gorm [--enums-as-constraint] <path-to-xsd-file>
grails xsd-to-gorm definitions/some-sort-of-xml-schema.0.01.02.xsd
grails import-xml-data [--enums-as-constraint] [--strict] <path-to-xml-file>
grails import-xml-data definitions/xml-data-based-on-schema.0.01.02.xml
The following settings can help your application run faster while importing large datasets.
Many of these settings were drawn from the following blog posts:
-
Reduce the JVM heap size (for smaller domain models), and turn on the parallel garbage collector
Example: GRAILS_OPTS="-Xmx512m -Xms512m -XX:PermSize=128m -XX:MaxPermSize=128m -XX:+UseParallelOldGC"
If your domain model is larger (100+ Domain classes), you may need something like...
Example: GRAILS_OPTS="-Xmx2g -Xms2g -XX:PermSize=1g -XX:MaxPermSize=1g -server"
Mine is pushing 300 models, so I run with:
GRAILS_OPTS="-Xmx4g -Xms4g -XX:PermSize=2g -XX:MaxPermSize=2g -server"
- Turn off hibernate's 2nd level cache in your DataSource config hibernate { cache.use_second_level_cache = false cache.use_query_cache = false }
- Apr 05, 2012
- 0.3.2 - Added support for minOccurs = 0 as a nullable flag in an XSD file
- Apr 05, 2012
- 0.3.1 - Added CSV output log for import validation failure errors
- Apr 04, 2012
- 0.3.0 - Added XML Data import support
- Mar 29, 2012
- 0.2.1 - Added support to create Enums as contraints rather than domain classes
- Mar 23, 2012
- 0.1.0 - Initial GitHub Release