Good day
I want to make use of the javax.persistence API to get the lock functionalities, in order to lock the table record that a certain user is busy editing in my application.
Imports:
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.LockModeType;
import javax.persistence.Persistence;
Is it possible to do so?
Thank you in advance