i have a service like that
@Service
public class AuditService {
@PersistenceContext
private EntityManager entityManager;
public void save(final Audit audit) {
entityManager.persist(audit);
}
}
I just want to know which exact implementation of EntityManager is used. The purpose is to find it, in order to get the code of persist method()