Code:
<component class="eg.OperationHandle" name="handle">
<many-to-one cascade="none" class="eg.UserInfo" insert="false" name="creationUser" update="false">
<column name="CREATION_USER_ID"/>
</many-to-one>
<property name="creationUid" type="java.lang.Long">
<column name="CREATION_USER_ID" sql-type="INT(10)" unique="false"/>
</property>
in component , many-to-one 's tag insert="false" update="false" looks like not workwell,
hibernate report:
eg.UserInfo should be mapped with insert="false" update="false": CREATION_USER_ID
but out od component , it is work well, why?