Uses of Interface
org.springframework.data.domain.ManagedTypes
Packages that use ManagedTypes
Package
Description
Support for registering the need for reflection, resources, java serialization and proxies at runtime for Ahead of
Time compilation.
Central domain abstractions especially to be used in combination with the
Repository
abstraction.Mapping context API and implementation base classes.
-
Uses of ManagedTypes in org.springframework.data.aot
Methods in org.springframework.data.aot with parameters of type ManagedTypesModifier and TypeMethodDescriptionprotected BeanRegistrationAotContribution
ManagedTypesBeanRegistrationAotProcessor.contribute
(AotContext aotContext, ManagedTypes managedTypes, RegisteredBean registeredBean) Hook to provide a customized flavor ofBeanRegistrationAotContribution
. -
Uses of ManagedTypes in org.springframework.data.domain
Methods in org.springframework.data.domain that return ManagedTypesModifier and TypeMethodDescriptionstatic ManagedTypes
ManagedTypes.empty()
Factory method used to construct a new instance ofManagedTypes
containing notypes
.static ManagedTypes
Factory method used to constructManagedTypes
from the given array oftypes
.static ManagedTypes
ManagedTypes.fromIterable
(Iterable<? extends Class<?>> types) static ManagedTypes
ManagedTypes.fromStream
(Stream<? extends Class<?>> types) static ManagedTypes
ManagedTypes.fromSupplier
(Supplier<Iterable<Class<?>>> dataProvider) Factory method used to constructManagedTypes
from the given, requiredSupplier
of anIterable
oftypes
. -
Uses of ManagedTypes in org.springframework.data.mapping.context
Methods in org.springframework.data.mapping.context with parameters of type ManagedTypesModifier and TypeMethodDescriptionvoid
AbstractMappingContext.setManagedTypes
(ManagedTypes managedTypes) Sets the types to populate the context initially.