Interface DubboConfigBeanCustomizer
- All Superinterfaces:
ConfigurationBeanCustomizer,org.springframework.core.Ordered
- All Known Implementing Classes:
NamePropertyDefaultValueDubboConfigBeanCustomizer
public interface DubboConfigBeanCustomizer
extends ConfigurationBeanCustomizer, org.springframework.core.Ordered
The Bean customizer for
Dubbo Config. Generally, The subclass will be registered as a Spring
Bean that is used to customize Dubbo Config bean
after its binding.
If There are multiple DubboConfigBeanCustomizer beans in the Spring context, they
are executed orderly, thus the subclass should be aware to implement the Ordered.getOrder() method.
- Since:
- 2.6.6
- See Also:
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Method Summary
Modifier and TypeMethodDescriptiondefault voidCustomize the configuration beanvoidcustomize(String beanName, AbstractConfig dubboConfigBean) CustomizeDubbo Config BeanMethods inherited from interface org.springframework.core.Ordered
getOrder
-
Method Details
-
customize
CustomizeDubbo Config Bean- Parameters:
beanName- the name ofDubbo Config BeandubboConfigBean- the instance ofDubbo Config Bean
-
customize
Description copied from interface:ConfigurationBeanCustomizerCustomize the configuration bean- Specified by:
customizein interfaceConfigurationBeanCustomizer- Parameters:
beanName- the name of the configuration beanconfigurationBean- the configuration bean
-