it may be possible to deduce some parts of the schema definition from javax.validation annotations. for example @Size(max=10) on a String property can be mapped directly to a varchar column length. nullability is another possible candidate.
doing this will save some repetition of deifnitions
|