On our web site we have two operations which work against the same table, one does a read of multiple rows and the other deletes a row.
We're using Spring 3.1 and Hibernate 3.6.
The exact operations are
EntityManager.createQuery().getResultList();
and
EntityManager.remove();
We are getting the StaleObjectStateException on the remove() thread, not on the getResultList() thread. The question is, why would a read cause a StaleObjectException?