I have a persistent hibernate object I obtained using session.save(object)
session.save(object)
I changed it since.
I want to execute session.evict(object)
session.evict(object)
Couldn't you manually save the object first via something like
session.saveOrUpdate(theObject); session.evict(theObject);