Wiki source code of Data Model Generator + Utils Home
Version 4.1 by wolfgang_pausch@iteg_at on 2012-09-07 11.35:38
Show last authors
| author | version | line-number | content |
|---|---|---|---|
| 1 | Dmutils consists of | ||
| 2 | |||
| 3 | * a data model generator which can generate various pieces of (currently Java-) code based on a xml specification of a datamodel, in detail:\\ | ||
| 4 | ** dto classes | ||
| 5 | ** database access classes (DAOs), including support for specifying generated joins based on the datamodel | ||
| 6 | ** a table definition class, to create a complete database schema based on the datamodel specification | ||
| 7 | * a flexible importer, which can based on the datamodel specification import any pieces of data (given as csv file) into the database, including resolving and generating foreign key references between both the imported tuples and the tuples already present on the database. | ||
| 8 | |||
| 9 | ===== {{id name="DataModelGenerator+UtilsHome-Repositories:"/}}Repositories: ===== | ||
| 10 | |||
| 11 | The subversion repository can be found here: | ||
| 12 | |||
| 13 | {{code language="none"}} | ||
| 14 | https://svn.clazzes.org/svn/dmgen. | ||
| 15 | {{/code}} | ||
| 16 | |||
| 17 | To use the project add the following to your {{code language="none"}}pom.xml{{/code}} file: | ||
| 18 | |||
| 19 | {{code language="none"}} | ||
| 20 | <repository> | ||
| 21 | <id>clazzes.org</id> | ||
| 22 | <url>http://mvn.clazzes.org/</url> | ||
| 23 | </repository> | ||
| 24 | ... | ||
| 25 | <dependency> | ||
| 26 | <groupId>org.clazzes.dmgen</groupId> | ||
| 27 | <artifactId>dmutils.api</artifactId> | ||
| 28 | <version>0.1.3-SNAPSHOT</version> | ||
| 29 | </dependency> | ||
| 30 | <dependency> | ||
| 31 | <groupId>org.clazzes.dmgen</groupId> | ||
| 32 | <artifactId>dmutils.impl</artifactId> | ||
| 33 | <version>0.1.3-SNAPSHOT</version> | ||
| 34 | </dependency> | ||
| 35 | {{/code}} |