Kris Reid wrote:
I don't even understand what is forcing the update. All the action is meant to do is display a Set of data from the database.
So, you are not even expecting an update to happen when it is updating..
Are you trying to load the entities from a session where you have other entities already added or updated?
Could you post your code?
It could be because of the following.
I think, in a session, if you try to do a load some entities from the database, if some of those entities are already changed in your same session, hibernate will first do a flush and then load the entities.
This is to make sure that it gets the latest entities..