I'm trying to calculate the modifications in an entity before updating it.
- display HTML form
- on submit:
- start transaction
- load entity
- apply form data to entity
- calculate changes
- persist entity
Steps 2.1 through 2.3 are managed through my MVC framework (Spring MVC) so I never actually have a reference to the original entity without the changes.
So what I'm currently trying to do is the following:
// transaction is already started
public Modifications store(Entity updated) {
Entity original = entityManager.find(Entity.class, updated.getId());
Modifications mods = calculateModifications(original, updated);
entityManager.merge(updated);
return mods;
}
But unfortunately the entity I receive from the entity manager is the same (read ==) as the updated one.
Here's the question: How do I force the entity manager to load the entity again from the database without detaching my updated entity?
I am using Hibernate as my persistence provider, but I would like to keep this provider agnostic as much as possible.
OpenViewInEntityManagerFilter, because my MVC controller methods really shouldn't run in a transaction. Thanks for the hint. – Philipp Jardas Dec 30 '12 at 10:31