According to section 5.1.4.5 of the reference manual,
Quote:
Due to its inherent nature, entities that use this [assigned] generator cannot be saved via the Session's saveOrUpdate() method. Instead you have to explicitly specify to Hibernate if the object should be saved or updated by calling either the save() or update() method of the Session.
Can I get around this restriction if I have an Interceptor that watches for these objects and returns the correct value in Interceptor.isUnsaved()?
Thanks.