Skip to content
Advertisement

JPA @Version field doesn’t get incremented

I’m new to JPA and Hibernate and I have a problem with optimistic locking. I have a class which has an @Version annotated field. When I update the Entity represented by this class, the version counter does not increase. Here is my code: The class:

JavaScript

and here is the main method:

JavaScript

and here is what the console says:

JavaScript

Can somebody tell me what’s wrong?

Edit: ok, I have tried something. I’ve set the locking to LockModeType.OPTIMISTIC_FORCE_INCREMENT and got this Error-Message:

JavaScript

So it seems clear that I have a non-versioned entity. But why? I have the @Version Annotation in my class.

Edit: I begin to think that the problem is in the persistence.xml. Here it is:

JavaScript

Is there anything wrong?

Advertisement

Answer

The entityManager.persist() method is meant to be used only for new entities that have never been persisted before.

Because you are fetching an entity you don’t need to call persist or merge anyway. The dirty checking will do the update on your behalf.

The commit will trigger the flush anyway so you should see the update.

Make sure you use the javax.persistence.Version annotation and not from another package (spring data or something similar).

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement