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.

@FunctionalInterface public interface BeanPostProcessorRegistryCustomizer extends Ordered
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 Type
    Method
    Description
    void
    Customize the given registry by registering post-processors.

    Methods inherited from interface tech.guilhermekaua.spigotboot.core.context.lifecycle.Ordered

    getOrder
  • Method Details

    • customize

      void customize(@NotNull @NotNull BeanPostProcessorRegistry registry)
      Customize the given registry by registering post-processors.
      Parameters:
      registry - the registry to customize, not null