Interface ConfigurationBeanCustomizer
-
- All Superinterfaces:
org.springframework.core.Ordered
public interface ConfigurationBeanCustomizer extends org.springframework.core.Ordered
The customizer for the configuration bean afterits binding
.If There are multiple
ConfigurationBeanCustomizer
beans in the Springcontext
, they are executed orderly, thus the subclass should be aware to implement theOrdered.getOrder()
method.- Since:
- 1.0.0
- Author:
- Mercy
- See Also:
ConfigurationBeanBinder
,ConfigurationBeanBindingPostProcessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
customize(java.lang.String beanName, java.lang.Object configurationBean)
Customize the configuration bean
-