Interface BeanPostProcessorRegistryCustomizer
- All Superinterfaces:
Ordered
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback interface for contributing
BeanPostProcessor instances to the framework.
Provide beans of this type via @Configuration classes with @Bean methods to
register custom post-processors during context initialization. Customizers are applied in the
DEFINITIONS_READY phase, before bean instantiation begins. Implement Ordered.getOrder()
to control application order; lower values are applied first.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidcustomize(@NotNull BeanPostProcessorRegistry registry) Customize the given registry by registering post-processors.
-
Method Details
-
customize
Customize the given registry by registering post-processors.- Parameters:
registry- the registry to customize, not null
-