Class JpaMetamodelMappingContext
java.lang.Object
org.springframework.data.mapping.context.AbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
org.springframework.data.jpa.mapping.JpaMetamodelMappingContext
- All Implemented Interfaces:
Aware, BeanFactoryAware, InitializingBean, ApplicationContextAware, ApplicationEventPublisherAware, EnvironmentAware, MappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
public class JpaMetamodelMappingContext
extends AbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
MappingContext implementation based on a Jpa Metamodel.- Since:
- 1.3
- Author:
- Oliver Gierke, Christoph Strobl, Mark Paluch, David Madden
-
Constructor Summary
ConstructorsConstructorDescriptionJpaMetamodelMappingContext(Set<jakarta.persistence.metamodel.Metamodel> models) Creates a new JPAMetamodelbasedMappingContext. -
Method Summary
Modifier and TypeMethodDescriptionprotected <T> org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?> createPersistentEntity(org.springframework.data.core.TypeInformation<T> typeInformation) protected JpaPersistentPropertycreatePersistentProperty(Property property, org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?> owner, SimpleTypeHolder simpleTypeHolder) findPersistentPropertyPaths(Class<T> type, Predicate<? super JpaPersistentProperty> predicate) We customize the lookup ofPersistentPropertyPathsby also traversing properties that are embeddables.booleanhasPersistentEntityFor(Class<?> type) protected booleanshouldCreatePersistentEntityFor(org.springframework.data.core.TypeInformation<?> type) Methods inherited from class AbstractMappingContext
addPersistentEntity, addPersistentEntity, afterPropertiesSet, doFindPersistentPropertyPaths, getManagedTypes, getPersistentEntities, getPersistentEntity, getPersistentEntity, getPersistentEntity, getPersistentPropertyPath, getPersistentPropertyPath, getPersistentPropertyPath, initialize, setApplicationContext, setApplicationEventPublisher, setBeanFactory, setEnvironment, setInitialEntitySet, setManagedTypes, setSimpleTypeHolder, setStrict, shouldCreatePropertiesMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface MappingContext
getRequiredPersistentEntity, getRequiredPersistentEntity, getRequiredPersistentEntity
-
Constructor Details
-
JpaMetamodelMappingContext
Creates a new JPAMetamodelbasedMappingContext.- Parameters:
models- must not be null or empty.
-
-
Method Details
-
createPersistentEntity
protected <T> org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?> createPersistentEntity(org.springframework.data.core.TypeInformation<T> typeInformation) - Specified by:
createPersistentEntityin classAbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
-
createPersistentProperty
protected JpaPersistentProperty createPersistentProperty(Property property, org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?> owner, SimpleTypeHolder simpleTypeHolder) - Specified by:
createPersistentPropertyin classAbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
-
shouldCreatePersistentEntityFor
protected boolean shouldCreatePersistentEntityFor(org.springframework.data.core.TypeInformation<?> type) - Overrides:
shouldCreatePersistentEntityForin classAbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
-
findPersistentPropertyPaths
public <T> PersistentPropertyPaths<T, JpaPersistentProperty> findPersistentPropertyPaths(Class<T> type, Predicate<? super JpaPersistentProperty> predicate) We customize the lookup ofPersistentPropertyPathsby also traversing properties that are embeddables.- Specified by:
findPersistentPropertyPathsin interfaceMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>- Overrides:
findPersistentPropertyPathsin classAbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>- See Also:
-
hasPersistentEntityFor
- Specified by:
hasPersistentEntityForin interfaceMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>- Overrides:
hasPersistentEntityForin classAbstractMappingContext<org.springframework.data.jpa.mapping.JpaPersistentEntityImpl<?>, JpaPersistentProperty>
-