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
Methods inherited from interface org.springframework.core.Ordered
getOrder
-
Method Details
-
customize
Customize the configuration bean- Parameters:
beanName
- the name of the configuration beanconfigurationBean
- the configuration bean
-