Hi there!
I need some help regarding the following situation :
Hibernate version: 3.2.4.sp1
Mapping documents:
systemKonfiguration is a map<Anwendungssystem,String>
<map name="systemKonfigurationen" table="T_UEBERWACHUNGSTYP_SYSTEM" cascade="all" lazy="false">
<key column="UEBERWACHUNGSTYP_ID"></key>
<index-many-to-many class="Anwendungssystem" column="SYSTEM_ID" />
<element column="VALUE" type="string" length="20"></element>
</map>
All objects are stored perfectly with this mapping, but after retrieval from db, get an "Anwendungssystem" ( enhanced by CGLIB ), but without an assigned id! It has an id, but it is not set. Lazy loading is disabled, so why is the id not set?
Thanks a lot
Mirko
|