co.streamx.fluent.JPA.repository.EntityManagerSupplierImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-jpa Show documentation
Show all versions of fluent-jpa Show documentation
Fluent query implementation for JPA repositories
The newest version!
package co.streamx.fluent.JPA.repository;
import jakarta.persistence.EntityManager;
import jakarta.persistence.PersistenceContext;
public class EntityManagerSupplierImpl implements EntityManagerSupplier {
@PersistenceContext
private EntityManager em;
@Override
public EntityManager getEntityManager() {
return em;
}
}