Interface ConfigurationBeanCustomizer

All Superinterfaces:
org.springframework.core.Ordered

public interface ConfigurationBeanCustomizer extends org.springframework.core.Ordered
The customizer for the configuration bean after its binding.

If There are multiple ConfigurationBeanCustomizer beans in the Spring context, they are executed orderly, thus the subclass should be aware to implement the Ordered.getOrder() method.

Since:
1.0.0
Author:
Mercy
See Also:
  • Field Summary

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(String beanName, Object configurationBean)
    Customize the configuration bean

    Methods inherited from interface org.springframework.core.Ordered

    getOrder
  • Method Details

    • customize

      void customize(String beanName, Object configurationBean)
      Customize the configuration bean
      Parameters:
      beanName - the name of the configuration bean
      configurationBean - the configuration bean