Hi,
in my application <many-to-one> lazy loading does not work .
Hibernate version:3.1.3/3.2.0ga
Mapping:
Code:
<hibernate-mapping>
<class name="de.mba.MyClass"
table="MyTable">
<id name="poi" type="string">
<column name="POI" length="22" />
<generator class="assigned" />
</id>
<property name="lupdDatetime" type="timestamp">
<column name="LUPD_DATETIME" length="26" />
</property>
<property name="lupdProcess" type="string">
<column name="LUPD_PROCESS" length="30" />
...
<many-to-one name="assoc1"
class="de.mba.MyAssoc"
insert="false" update="false" not-found="ignore">
<column name="POI" />
</many-to-one>
</class>
</hibernate-mapping>
The declaration of the attribute lazy with the value 'proxy' in the <many-to-one> element does not work too.
Thanks for your help!