I know Hibernate calls setters when you lookup a bean.
But I recently noticed the setter was being called by Hibernate when we we were not doing any lookups. We had created our POJO's and then called save. Why would Hibernate call setters in this case?
Update: The setter call seems to be happening when we are actually calling delete()
on a Hibernate entity. Why does Hibernate call the setter in this case?