This is a work in progress, and currently very, very incomplete...
When starting a new project, where you want to use synon2hbm, we recommend starting with a copy of synon2hbmDemo. You don't have to organize your project as synon2hbmDemo, of course, but in the following, we assume that things are organized as in synon2hbmDemo.
/src/java
/src/types
/gen/src
to /src/types
,
and add whatever methods you need..hbm.xml
files) and UserTypes you write./src/test
/gen/java
/build-resources
/build-resources
so that programs looking for their configuration files in the classpath
can find them. The rest is in subdirectories under /build-resources
.
/build-resources/conf
/build-resources/hbmFragments
/build-resources/generatorContext.xml
/build-resources/jdbc.properties
/build-resources/log4j.properties
/build-resources/conf/generator.properties
/build-resources/generatorContext.xml
, but some simple
settings was moved to this property file to make them accessible for
the build script also./build-resources/hbmFragments
build.xml
If synon2hbm encounters fields of such user-defined types it will not generate
Java classes for them but log a warning like this:
Skipping DET field DVN Geboortedatum
Later the POJO generation vil fail with a stacktrace similar to this:
[hibernatetool] org.hibernate.MappingException:
Could not determine type for: nl.iza.reveng.hibernate.DVNGeboortedatumUserType, for columns: [org.hibernate.mapping.Column(BWADDE)]
[hibernatetool] at org.hibernate.mapping.SimpleValue.getType(SimpleValue.java:265)
[hibernatetool] at org.hibernate.tool.hbm2x.Cfg2JavaTool.getRawTypeName(Cfg2JavaTool.java:587)
...
(rest of stacktrace omitted)
In this case the field named DVNGeboortedatum was declared
as a DET
field in Synon.
To resolve this, you must define the field type
in build-resources/generatorContext.xml.
In the above example DET
was actually a date-field,
so DET
was added in the list of types defined in
<property name="dateTypes">
So: before the list of dateTypes was:
<property name="dateTypes">
<set>
<value>DTÆ</value>
</set>
</property>
and the working version is:
<property name="dateTypes">
<set>
<value>DTÆ</value>
<value>DET</value>
</set>
</property>
Since we depend very heavily on Spring, we strive to limit
dependencies to whatever is supplied with Spring.
Therefore the /lib directory is more or less a copy of the /lib
directory from the spring-framework-with-dependencies download bundle
available from the Spring SourceForge project download site (we did
remove some of the .jars we don't use, though) plus:
generatorContext.xml
you can set the following attributes to control how file-classes
are generated:
fileSuperclasses
<map>
in which you - for each file - may specify a
class to be used as a superclass for the class generated for that file.
Here's an example:<property name="fileSuperclasses"><map>
<entry key="SomeFile" value="AbstractSomeFile"/>
<entry key="AnotherFile" value="AbstractOtherFile"/>
</map></property>
fieldSettings
<map>
, where the key is a file name,
and the entries are maps which specify settings for fields in that file.
In this "secondary" <map/gt;
the key is a fieldname
(the database field name - not the name normally used in *:2E), and
the value is one of these:
ignore
synon2hbm
include your xml in the generated hibernate mapping file.version
identity
synon2hbm
.<property name="fieldSettings"><map>
<entry key="SomeFile"><map>
<!-- Price fields are manually mapped to a Pricelist component -->
<entry key="AUBVQT" value="ignore"/>
<entry key="AUAVN9" value="ignore"/>
<entry key="AUAUN9" value="ignore"/>
<entry key="AUZQN9" value="ignore"/>
</map></entry>
<entry key="YetAnotherFile"><map>
<entry key="APKAID" value="identity"/>
<entry key="APVER" value="version"/>
</map></entry>
</map></property>
synon2hbm
generates three of four classes. For
a field called "Field X" it will generate:
FieldXUserType.java
GeneratedFieldX
objects.GeneratedFieldX.java
FieldXCondition.java
FieldX.java
GeneratedFieldX
.
This means, that if you need to add methods to a field, this is where
you should do it. Move the .java file out of the generator output
folder (but make sure it is still available on the classpath, when
you run the generator again), and modify it as needed.FieldX
because
GeneratedFieldX.java
is regenerated, but FieldX.java
will not be touched,
and therefore your modifications will be preserved.