Uses of Interface
org.springframework.data.jpa.repository.support.JpaEntityInformation
Packages that use JpaEntityInformation
-
Uses of JpaEntityInformation in org.springframework.data.jpa.repository.support
Classes in org.springframework.data.jpa.repository.support that implement JpaEntityInformationModifier and TypeClassDescriptionclassBase class forJpaEntityInformationimplementations to share common method implementations.classImplementation ofEntityInformationthat uses JPAMetamodelto find the domain class' id field.classJpaPersistableEntityInformation<T extends Persistable<ID>,ID> Extension ofJpaMetamodelEntityInformationthat consideres methods ofPersistableto lookup the id.Methods in org.springframework.data.jpa.repository.support that return JpaEntityInformationModifier and TypeMethodDescriptionstatic <T> JpaEntityInformation<T,?> JpaEntityInformationSupport.getEntityInformation(Class<T> domainClass, jakarta.persistence.EntityManager em) Creates aJpaEntityInformationfor the given domain class andEntityManager.<T,ID> JpaEntityInformation<T, ID> JpaRepositoryFactory.getEntityInformation(Class<T> domainClass) Constructors in org.springframework.data.jpa.repository.support with parameters of type JpaEntityInformationModifierConstructorDescriptionQuerydslJpaPredicateExecutor(JpaEntityInformation<T, ?> entityInformation, jakarta.persistence.EntityManager entityManager, EntityPathResolver resolver, CrudMethodMetadata metadata) Creates a newQuerydslJpaPredicateExecutorfrom the given domain class andEntityManagerand uses the givenEntityPathResolverto translate the domain class into anEntityPath.QuerydslJpaRepository(JpaEntityInformation<T, ID> entityInformation, jakarta.persistence.EntityManager entityManager) Deprecated.Creates a newQuerydslJpaRepositoryfrom the given domain class andEntityManager.QuerydslJpaRepository(JpaEntityInformation<T, ID> entityInformation, jakarta.persistence.EntityManager entityManager, EntityPathResolver resolver) Deprecated.Creates a newQuerydslJpaRepositoryfrom the given domain class andEntityManagerand uses the givenEntityPathResolverto translate the domain class into anEntityPath.SimpleJpaRepository(JpaEntityInformation<T, ?> entityInformation, jakarta.persistence.EntityManager entityManager) Creates a newSimpleJpaRepositoryto manage objects of the givenJpaEntityInformation.