Search Results

1
vote

When Hibernate flushes a Session, how does it decide which objects in the session are dirty?

Take a look to org.hibernate.event.def.DefaultFlushEntityEventListener.dirtyCheck Every element in the session goes to this method to determine if it is dirty or not by comparing with an untouched …