loadAll « Update « JPA Q&A





1. UPDATE operations made by Hibernate for a loadAll() method    forum.hibernate.org

Well, you could post the code of the loadAll() method; that might help. However, maybe you are seeing a flush caused by uncommitted and unflushed changes that you've made in the current transaction. When you have flush mode = AUTO, you are likely to see uncommitted changes sent to the database when you perform a subsequent query or other Hibernate operation ...