I am new to Hibernate JPA. As I understand the optimistic_force_increment in hibernate jpa: if the entity is updated anywhere in a transaction when updated entity commits, it updates the version field column in database.
Now my question is, is there any way to update the @version field without updating any data inside the entity?
Highly appreciate a code snippet or example to do the same.