Uses of Interface
org.springframework.data.jpa.repository.support.JpaEntityInformation
Package
Description
Spring Data JPA specific converter infrastructure.
Query implementation to execute queries against JPA.
JPA repository implementations.
-
Uses of JpaEntityInformation in org.springframework.data.envers.repository.support
ModifierConstructorDescriptionEnversRevisionRepositoryImpl
(JpaEntityInformation<T, ?> entityInformation, RevisionEntityInformation revisionEntityInformation, jakarta.persistence.EntityManager entityManager) Creates a newEnversRevisionRepositoryImpl
using the givenJpaEntityInformation
,RevisionEntityInformation
andEntityManager
. -
Uses of JpaEntityInformation in org.springframework.data.jpa.repository.query
Modifier and TypeMethodDescriptionJpaEntityInformation<?,
?> KeysetScrollSpecification.entity()
Returns the value of theentity
record component.Modifier and TypeMethodDescriptionstatic Sort
KeysetScrollSpecification.createSort
(KeysetScrollPosition position, Sort sort, JpaEntityInformation<?, ?> entity) Create aSort
object to be used with the actual query.ModifierConstructorDescriptionKeysetScrollSpecification
(KeysetScrollPosition position, Sort sort, JpaEntityInformation<?, ?> entity) Creates an instance of aKeysetScrollSpecification
record class.protected
ScrollDelegate
(JpaEntityInformation<T, ?> entity) -
Uses of JpaEntityInformation in org.springframework.data.jpa.repository.support
Modifier and TypeClassDescriptionclass
Base class forJpaEntityInformation
implementations to share common method implementations.class
Implementation ofEntityInformation
that uses JPAMetamodel
to find the domain class' id field.class
JpaPersistableEntityInformation<T extends Persistable<ID>,
ID> Extension ofJpaMetamodelEntityInformation
that consideres methods ofPersistable
to lookup the id.Modifier and TypeMethodDescriptionstatic <T> JpaEntityInformation<T,
?> JpaEntityInformationSupport.getEntityInformation
(Class<T> domainClass, jakarta.persistence.EntityManager em) Creates aJpaEntityInformation
for the given domain class andEntityManager
.<T,
ID> JpaEntityInformation<T, ID> JpaRepositoryFactory.getEntityInformation
(Class<T> domainClass) ModifierConstructorDescriptionQuerydslJpaPredicateExecutor
(JpaEntityInformation<T, ?> entityInformation, jakarta.persistence.EntityManager entityManager, EntityPathResolver resolver, CrudMethodMetadata metadata) Creates a newQuerydslJpaPredicateExecutor
from the given domain class andEntityManager
and uses the givenEntityPathResolver
to translate the domain class into anEntityPath
.QuerydslJpaRepository
(JpaEntityInformation<T, ID> entityInformation, jakarta.persistence.EntityManager entityManager) Deprecated.Creates a newQuerydslJpaRepository
from the given domain class andEntityManager
.QuerydslJpaRepository
(JpaEntityInformation<T, ID> entityInformation, jakarta.persistence.EntityManager entityManager, EntityPathResolver resolver) Deprecated.Creates a newQuerydslJpaRepository
from the given domain class andEntityManager
and uses the givenEntityPathResolver
to translate the domain class into anEntityPath
.SimpleJpaRepository
(JpaEntityInformation<T, ?> entityInformation, jakarta.persistence.EntityManager entityManager) Creates a newSimpleJpaRepository
to manage objects of the givenJpaEntityInformation
.