Maybe I didnt set it up right but it didnt have the effect I was looking for. On a many to one assosciation, I set this mapping up:
Code:
<many-to-one name="parent" column="parentId" access="field.camelcase-underscore" not-null="true" cascade="save-update" />
This mapping did not cause the parent's version to get updated. Basically nothing ever happened to the parent on add, update, delete.
Any other ideas? Do I need another mapping on the other end? I'm trying to avoid the list mapping on the parent due to performance problems with collection mappings.